From 7217fa749352ddfcb3d4a3c07a2c92df3137fd04 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Sun, 25 Oct 2015 00:13:45 -0400 Subject: [PATCH] fix unread count increase --- public/src/client/footer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/client/footer.js b/public/src/client/footer.js index 288123c8e1..6c8f4c5711 100644 --- a/public/src/client/footer.js +++ b/public/src/client/footer.js @@ -36,7 +36,7 @@ define('forum/footer', ['notifications', 'chat', 'components', 'translator'], fu function increaseUnreadCount() { var count = parseInt($('#unread-count i').attr('data-content'), 10) + 1; - updateUnreadTopicCount(null, count); + updateUnreadTopicCount(count); } function markTopicsUnread(tid) {