mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:35:56 +00:00
don't compare result with undefined seq
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user