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