mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user