From 4997bca3fc902f9f65dd99095a614dd2594d1b7a Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Fri, 1 Jun 2012 00:44:50 +0200 Subject: [PATCH] /b/ has an image limit of '250'. --- 4chan_x.user.js | 1 + script.coffee | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 9cace7321..3ff3fd31b 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3449,6 +3449,7 @@ this.imgLimit = (function() { switch (g.BOARD) { case 'a': + case 'b': case 'mlp': case 'v': return 251; diff --git a/script.coffee b/script.coffee index 372f9f1a0..94ded600d 100644 --- a/script.coffee +++ b/script.coffee @@ -2626,7 +2626,7 @@ ThreadStats = @posts = @images = 0 @imgLimit = switch g.BOARD - when 'a', 'mlp', 'v' + when 'a', 'b', 'mlp', 'v' 251 when 'vg' 501