From 5b1269cbe8b87e4a40093aa5ad287c28ad8855e3 Mon Sep 17 00:00:00 2001 From: Mark Cooper Date: Wed, 1 Sep 2021 19:50:18 -0500 Subject: [PATCH] fix variable typo --- client/components/app/StreamContainer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/app/StreamContainer.vue b/client/components/app/StreamContainer.vue index 74ac4d8b..3468db56 100644 --- a/client/components/app/StreamContainer.vue +++ b/client/components/app/StreamContainer.vue @@ -111,7 +111,7 @@ export default { } }, streamClosed(streamId) { - if (this.stream && (this.stream.id === streamId || this.stream === 'n/a')) { + if (this.stream && (this.stream.id === streamId || streamId === 'n/a')) { this.terminateStream() this.$store.commit('clearStreamAudiobook', this.stream.audiobook.id) this.stream = null