From 820b53c3b496dc64bc6f38690681edc9a780cd95 Mon Sep 17 00:00:00 2001 From: Agate Date: Thu, 9 Jul 2020 13:03:08 +0200 Subject: [PATCH] Fixed unplayable album card --- front/src/components/audio/PlayButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue index 1a46b5774..623e00fee 100644 --- a/front/src/components/audio/PlayButton.vue +++ b/front/src/components/audio/PlayButton.vue @@ -112,7 +112,7 @@ export default { return a.is_playable === true }).length > 0 } else if (this.album) { - return this.album.is_playable + return true } else if (this.tracks) { return this.tracks.filter((t) => { return t.uploads && t.uploads.length > 0