From 8b91ea3a74788891bf667ac044e556c7a772e7f1 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 28 Mar 2018 14:50:40 -0700 Subject: [PATCH] Revert "Suppress local echo when we are not caught up." This reverts commit 80ed8294a1599da19bf595493d6f2a5d07d0e934. We need to do some improvements to FetchStatus for narrows before this is safe to have running in production. --- static/js/echo.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/static/js/echo.js b/static/js/echo.js index a11a961147..a6bde1f55b 100644 --- a/static/js/echo.js +++ b/static/js/echo.js @@ -146,11 +146,6 @@ exports.try_deliver_locally = function try_deliver_locally(message_request) { return; } - if (!current_msg_list.fetch_status.can_append()) { - blueslip.log('Suppressing echo for list that is behind on fetches.'); - return; - } - var next_local_id = get_next_local_id(); if (!next_local_id) {