From 75d38d3f2bfa44e1bdfa5ecc12c1307294e089b9 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 28 Aug 2026 23:20:31 +0300 Subject: [PATCH] fix --- 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 638ee5dbf..aac1fa860 100644 --- a/src/stores/streaming.js +++ b/src/stores/streaming.js @@ -100,7 +100,7 @@ export const useStreamingStore = defineStore('streaming', { if (stream) { this.subscriptions.get(stream.name).delete(stream.argument) } else { - this.globalSubscriptions.remove(subscriber) + this.globalSubscriptions.delete(subscriber) } if (stream && this.state === WSConnectionStatus.JOINED) {