From 1a1d44aadfdab2cc0ee3f74bae96090b9fd09e5f Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 10 Aug 2014 22:49:23 +0200 Subject: [PATCH] live-index: fix for boards with more than one letter in name --- js/live-index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/live-index.js b/js/live-index.js index 8bce94f0..463f7596 100644 --- a/js/live-index.js +++ b/js/live-index.js @@ -18,7 +18,7 @@ if (active_page == 'index' && (""+document.location).match(/\/(index\.html)?(\?| // Make jQuery respond to reverse() $.fn.reverse = [].reverse; - var board_name = (""+document.location).match(/\/([^\/])\/[^/]*$/)[1]; + var board_name = (""+document.location).match(/\/([^\/]+)\/[^/]*$/)[1]; var handle_one_thread = function() { if ($(this).find(".new-posts").length <= 0) {