From 7a41c7462e05b3c026460133823849a8150dfd0b Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 12 Aug 2017 10:44:16 -0700 Subject: [PATCH] Last Long Reply order will now ignore hidden and filtered replies. --- src/General/Index.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/General/Index.coffee b/src/General/Index.coffee index 2670946c0..e1fb9cb69 100644 --- a/src/General/Index.coffee +++ b/src/General/Index.coffee @@ -815,6 +815,7 @@ Index = when 'lastlong' lastlong = (thread) -> for r, i in (thread.last_replies or []) by -1 + continue if Index.isHiddenReply thread.no, r len = if r.com then Build.parseComment(r.com).replace(/[^a-z]/ig, '').length else 0 if len >= Index.lastLongThresholds[+!!r.ext] return r