From 310529a9dbfda5891bb507b4aa90267b6318fc2f Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sun, 8 Jan 2012 01:57:18 +0100 Subject: [PATCH] Increase the limit for image limit. --- 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 3e58a9a5f..eefe523c2 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -2739,7 +2739,7 @@ threadStats.postcountEl.textContent = ++threadStats.posts; if ($('img[md5]', root)) { threadStats.imagecountEl.textContent = ++threadStats.images; - if (threadStats.images > 150) { + if (threadStats.images > 151) { return threadStats.imagecountEl.className = 'error'; } } diff --git a/script.coffee b/script.coffee index 5a2282f9d..0dafabd99 100644 --- a/script.coffee +++ b/script.coffee @@ -2132,7 +2132,7 @@ threadStats = threadStats.postcountEl.textContent = ++threadStats.posts if $ 'img[md5]', root threadStats.imagecountEl.textContent = ++threadStats.images - if threadStats.images > 150 + if threadStats.images > 151 threadStats.imagecountEl.className = 'error' unread =