From baa14a2765cbb13b9f4a3aa5ee32659aa109a468 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 22 Oct 2016 21:08:47 -0700 Subject: [PATCH] Fix bug from v1.13.0.3 causing index/catalog search to not search comment. --- src/General/Index.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/General/Index.coffee b/src/General/Index.coffee index ca87b017f..155ea87ab 100644 --- a/src/General/Index.coffee +++ b/src/General/Index.coffee @@ -874,6 +874,7 @@ Index = searchMatch: (obj, keywords) -> {info, file} = obj + info.comment ?= Build.parseComment info.commentHTML.innerHTML text = [] for key in ['comment', 'subject', 'name', 'tripcode'] text.push info[key] if key of info