diff --git a/js/tt-rss.js b/js/tt-rss.js index 654d125fb..9ff87d652 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -940,7 +940,7 @@ function handle_rpc_json(transport, scheduled_call) { const seq = reply['seq']; - if (get_seq() != seq) { + if (seq && get_seq() != seq) { console.log("[handle_rpc_json] sequence mismatch: " + seq + " (want: " + get_seq() + ")"); return true;