From 5d55cbb2aea8260f078f3e8794071fa098036fc6 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 13 Aug 2026 19:51:01 +0300 Subject: [PATCH] retry multipliers --- src/stores/streaming.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/streaming.js b/src/stores/streaming.js index 6dceb5f52..7038a709c 100644 --- a/src/stores/streaming.js +++ b/src/stores/streaming.js @@ -147,6 +147,7 @@ export const useStreamingStore = defineStore('streaming', { this.state = WSConnectionStatus.JOINED }, onOpen() { + this.retryMultiplier = 1 this.subscribers.forEach(({ stream, et }) => { et.dispatchEvent(new StreamStateEvent('open')) }) @@ -207,6 +208,7 @@ export const useStreamingStore = defineStore('streaming', { ) this.state = WSConnectionStatus.CLOSED + this.retryMultiplier = 1 this.subscribers.forEach(({ et }) => { et.dispatchEvent(new StreamStateEvent('close', closeEvent))