From d52f725ec16c4ae88b482080ee346d2b2a6d3da1 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 13 Dec 2019 11:58:05 -0800 Subject: [PATCH] Make sure isDead is set on archived threads on kissu.moe. --- src/main/Main.coffee | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/Main.coffee b/src/main/Main.coffee index 53fad511a..290ec3f59 100644 --- a/src/main/Main.coffee +++ b/src/main/Main.coffee @@ -352,7 +352,9 @@ Main = Main.handleErrors errors if errors.length if g.VIEW is 'thread' - threads[0].isArchived = true if g.threadArchived + if g.threadArchived + threads[0].isArchived = true + threads[0].kill() g.SITE.parseThreadMetadata?(threads[0]) Main.callbackNodes 'Thread', threads