diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index dd0f921d8..8a95e5eef 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -657,7 +657,7 @@ export default { currentTrack: { async handler (newValue, oldValue) { await this.loadSound(newValue, oldValue) - if (!newValue || !trackData.album.cover) { + if (!newValue || !newValue.album.cover) { this.ambiantColors = this.defaultAmbiantColors } },