From a9b29c723236d46c2e767c8696a536abab26a900 Mon Sep 17 00:00:00 2001 From: marktaiwan Date: Fri, 6 Mar 2015 20:04:35 +0800 Subject: [PATCH] Bugfix: convert it to string --- js/post-filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/post-filter.js b/js/post-filter.js index 28e02f78..229fbad9 100644 --- a/js/post-filter.js +++ b/js/post-filter.js @@ -811,7 +811,7 @@ if (active_page === 'thread' || active_page === 'index' || active_page === 'cata if (active_page == 'catalog') { $(document).on('click', '.mix', function(e) { if (e.shiftKey) { - var threadId = $(this).data('id'); + var threadId = $(this).data('id').toString(); var postId = threadId; blacklist.add.post(pageData.boardId, threadId, postId, false); }