From c49c201d91de6484e07c07650619d7924b192ffb Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 26 Mar 2013 20:31:05 +0100 Subject: [PATCH] This should fix the unread issue, according to @Nami-Doc. #968 --- src/features.coffee | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/features.coffee b/src/features.coffee index 9780708ec..bfe7eb4d4 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -3636,7 +3636,9 @@ Unread = count = Unread.posts.length if Conf['Unread Count'] - d.title = if g.DEAD + # XXX Chrome bug where it doesn't always update the tab title. + # crbug.com/124381 + d.title.textContent = if g.DEAD "(#{Unread.posts.length}) /#{g.BOARD}/ - 404" else "(#{Unread.posts.length}) #{Unread.title}"