dang, ai was right

This commit is contained in:
Henry Jameson 2026-08-26 15:02:19 +03:00
commit 97e3f24bdf

View file

@ -101,7 +101,7 @@ export const useStreamingStore = defineStore('streaming', {
this.subscriptions.get(stream.name).delete(stream.argument) this.subscriptions.get(stream.name).delete(stream.argument)
} }
if (this.state === WSConnectionStatus.JOINED) { if (stream && this.state === WSConnectionStatus.JOINED) {
this.socket.unsubscribe(...this.getSubArgs(stream)) this.socket.unsubscribe(...this.getSubArgs(stream))
} }
}, },
@ -131,7 +131,6 @@ export const useStreamingStore = defineStore('streaming', {
}, },
getSubArgs(stream) { getSubArgs(stream) {
if (stream === undefined) return []
const argumentKey = ARGUMENT_MAP[stream.name] const argumentKey = ARGUMENT_MAP[stream.name]
const args = argumentKey const args = argumentKey
? { ? {