diff --git a/4chan_x.user.js b/4chan_x.user.js index d18824f69..548818a28 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -973,7 +973,7 @@ break; case Conf.unreadCountTo0: Unread.replies = []; - Unread.update(); + Unread.update(true); break; case Conf.expandImage: Keybinds.img(thread); @@ -3136,7 +3136,7 @@ inline = QuoteInline.table(id, el.innerHTML); if ((i = Unread.replies.indexOf(el.parentNode.parentNode.parentNode)) !== -1) { Unread.replies.splice(i, 1); - Unread.update(); + Unread.update(true); } if (/\bbacklink\b/.test(q.className)) { $.after(q.parentNode, inline); diff --git a/script.coffee b/script.coffee index b34d48329..7cc61c0a6 100644 --- a/script.coffee +++ b/script.coffee @@ -831,7 +831,7 @@ Keybinds = Updater.update() when Conf.unreadCountTo0 Unread.replies = [] - Unread.update() + Unread.update true # Images when Conf.expandImage Keybinds.img thread @@ -2606,7 +2606,7 @@ QuoteInline = inline = QuoteInline.table id, el.innerHTML if (i = Unread.replies.indexOf el.parentNode.parentNode.parentNode) isnt -1 Unread.replies.splice i, 1 - Unread.update() + Unread.update true if /\bbacklink\b/.test q.className $.after q.parentNode, inline if Conf['Forward Hiding']