diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue
index dd0f921d8b2c099e94e410b64064072dcf5e6bc4..8a95e5eef71541e98775fcaba6c46ef3b2ac33cb 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
         }
       },