From d2437c49424a91edcdeed877e1669451f6520702 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Mon, 14 May 2012 19:10:38 +0200 Subject: [PATCH] Fix #470 --- 4chan_x.user.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 5103cfc38..3f41e1430 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2682,7 +2682,7 @@ }, watch: function(id) { var thread, watched, _name; - thread = $.id(id); + thread = $.id("t" + id); if ($('.favicon', thread).src === Favicon["default"]) { return false; } diff --git a/script.coffee b/script.coffee index b21a26179..503525f56 100644 --- a/script.coffee +++ b/script.coffee @@ -2124,7 +2124,7 @@ Watcher = Watcher.refresh() watch: (id) -> - thread = $.id id + thread = $.id "t#{id}" return false if $('.favicon', thread).src is Favicon.default watched = $.get 'watched', {}