From 7b27f337c686e5d736433bc5c714e8b72c520b7d Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 28 Aug 2026 20:16:22 +0300 Subject: [PATCH] subscriptions leak --- src/stores/streaming.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/streaming.js b/src/stores/streaming.js index a360731bf..638ee5dbf 100644 --- a/src/stores/streaming.js +++ b/src/stores/streaming.js @@ -99,6 +99,8 @@ export const useStreamingStore = defineStore('streaming', { this.subscribers.delete(subscriber) if (stream) { this.subscriptions.get(stream.name).delete(stream.argument) + } else { + this.globalSubscriptions.remove(subscriber) } if (stream && this.state === WSConnectionStatus.JOINED) {