diff --git a/client/components/app/BookListRow.vue b/client/components/app/BookListRow.vue index 37537b29..c618d723 100644 --- a/client/components/app/BookListRow.vue +++ b/client/components/app/BookListRow.vue @@ -118,7 +118,7 @@ export default { return this.book.numTracks }, isStreaming() { - return this.$store.getters['getAudiobookIdStreaming'] === this.audiobookId + return this.$store.getters['getLibraryItemIdStreaming'] === this.audiobookId }, showReadButton() { return this.showExperimentalFeatures && this.numEbooks @@ -168,7 +168,7 @@ export default { }) }, startStream() { - this.$eventBus.$emit('play-audiobook', this.book.id) + this.$eventBus.$emit('play-item', this.book.id) }, editClick() { this.$emit('edit', this.book) diff --git a/client/components/app/StreamContainer.vue b/client/components/app/StreamContainer.vue index b169abb0..a991a359 100644 --- a/client/components/app/StreamContainer.vue +++ b/client/components/app/StreamContainer.vue @@ -1,17 +1,17 @@