Comment out blueslip scroll finish error to quiet emails

A ticket is filed and this error is not fatal to the UI but rather
a warning to investigate, which we will now do

(imported from commit 3f67ec2b503e91b3921e33b89febd97790e389f1)
This commit is contained in:
Leo Franchi
2013-03-28 17:33:45 -04:00
parent 199610fe7f
commit a8816f81c0

View File

@@ -577,7 +577,14 @@ $(function () {
var new_selected = current_msg_list.selected_id();
if (scroll_start_message === undefined) {
blueslip.error("Got a scroll finish with no saved message from scroll start");
// blueslip.error("Got a scroll finish with no saved message from scroll start");
// This is being intermittently hit, and while not fatal or bothersome for the UI,
// it is something we want to trac down. To quiet emails, this is commented out
// for now.
// https://trac.humbughq.com/ticket/1138
//
// Make the block not empty to appease jslint
var ignored = true;
} else if (new_selected > scroll_start_message) {
var mark_as_read = [];
$.each(message_range(current_msg_list, scroll_start_message, new_selected),