From 14972d15e706f944eacc9da14d82a8c55aecaaac Mon Sep 17 00:00:00 2001 From: Equus2 Date: Mon, 11 Feb 2019 01:02:36 +0100 Subject: [PATCH] Fix auto reload bug when inlining replies --- js/auto-reload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/auto-reload.js b/js/auto-reload.js index 351ac948..7908af45 100644 --- a/js/auto-reload.js +++ b/js/auto-reload.js @@ -155,7 +155,7 @@ $(document).ready(function(){ if (!new_posts) { first_new_post = this; } - $(this).insertAfter($('div.post:last').next()).after('
'); + $(this).insertAfter($('div.post:not(.post-hover,.inline):last').next()).after('
'); new_posts++; loaded_posts++; $(document).trigger('new_post', this);