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))