diff --git a/components/app/AudioPlayer.vue b/components/app/AudioPlayer.vue index bc70aa16..0d0aef2c 100644 --- a/components/app/AudioPlayer.vue +++ b/components/app/AudioPlayer.vue @@ -48,7 +48,7 @@
- {{ bookmarks.length ? 'bookmark' : 'bookmark_border' }} + {{ bookmarks.length ? 'bookmark' : 'bookmark_border' }} bookmark @@ -115,7 +115,7 @@ export default { }, sleepTimerRunning: Boolean, sleepTimeRemaining: Number, - isServerItem: Boolean + serverLibraryItemId: String }, data() { return { @@ -391,7 +391,7 @@ export default { }, clickTitleAndAuthor() { if (!this.showFullscreen) return - const llid = this.libraryItem ? this.libraryItem.id : this.localLibraryItem ? this.localLibraryItem.id : null + const llid = this.serverLibraryItemId || this.libraryItem?.id || this.localLibraryItem?.id if (llid) { this.$router.push(`/item/${llid}`) this.showFullscreen = false diff --git a/components/app/AudioPlayerContainer.vue b/components/app/AudioPlayerContainer.vue index 623b72ed..29fff400 100644 --- a/components/app/AudioPlayerContainer.vue +++ b/components/app/AudioPlayerContainer.vue @@ -1,6 +1,6 @@