# HG changeset patch # User neko259 # Date 2013-12-05 09:44:53 # Node ID 8c98a1657253fd0ad7420e6902ea912f15af445c # Parent 7ce7bc5ee140a4506635b3f0f00108611908ae70 Updated posts must not affect bumplimit bar diff --git a/boards/static/js/thread_update.js b/boards/static/js/thread_update.js --- a/boards/static/js/thread_update.js +++ b/boards/static/js/thread_update.js @@ -95,7 +95,7 @@ function updateThread() { $('#reply-count').text(getReplyCount()); $('#image-count').text(getImageCount()); - updateBumplimitProgress(data.added.length + data.updated.length); + updateBumplimitProgress(data.added.length); }) .error(function(data) { // TODO Show error message that server is unavailable? @@ -144,4 +144,4 @@ function updateBumplimitProgress(postDel progressBar.width((100 - postCount / bumplimit * 100.0) + '%'); } } -} \ No newline at end of file +}