From 7b037ef60f91dc5760bebbc38ed1edffe61b8d22 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 1 Sep 2026 18:21:27 +0300 Subject: [PATCH] invert check --- src/stores/streaming.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/streaming.js b/src/stores/streaming.js index dae047f46..7fa00bdbc 100644 --- a/src/stores/streaming.js +++ b/src/stores/streaming.js @@ -235,7 +235,7 @@ export const useStreamingStore = defineStore('streaming', { ) setTimeout(() => { - if (this.retrying) return // retry aborted (i.e. due to logout) + if (!this.retrying) return // retry aborted (i.e. due to logout) this.initSocket() }, retryTimeout(this.retryMultiplier))