From 6a2d7af7208c1a55387e07a7f4cb1015e56d9a97 Mon Sep 17 00:00:00 2001 From: advplyr 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