From e884628918f28bb541476eedfd6e37ff2272182a Mon Sep 17 00:00:00 2001 From: ccd0 Date: Thu, 6 May 2021 13:15:21 -0700 Subject: [PATCH] Update board flag search on archive. --- src/Menu/ArchiveLink.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Menu/ArchiveLink.coffee b/src/Menu/ArchiveLink.coffee index 393e08836..4daa729da 100644 --- a/src/Menu/ArchiveLink.coffee +++ b/src/Menu/ArchiveLink.coffee @@ -39,11 +39,11 @@ ArchiveLink = else (post) -> typeParam = if type is 'country' and post.info.flagCodeTroll - 'tag' + 'troll_country' else type value = if type is 'country' - post.info.flagCode or post.info.flagCodeTroll + post.info.flagCode or post.info.flagCodeTroll.toLowerCase() else Filter.values(type, post)[0] # We want to parse the exact same stuff as the filter does already.