Skip to content
Snippets Groups Projects
Verified Commit b43d0f70 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed broken queue when album is missing

parent ab0167a6
No related branches found
No related tags found
No related merge requests found
...@@ -167,7 +167,7 @@ ...@@ -167,7 +167,7 @@
<i class="grip lines grey icon"></i> <i class="grip lines grey icon"></i>
</td> </td>
<td class="image-cell" @click="$store.dispatch('queue/currentIndex', index)"> <td class="image-cell" @click="$store.dispatch('queue/currentIndex', index)">
<img class="ui mini image" v-if="currentTrack.album && track.album.cover && track.album.cover.original" :src="$store.getters['instance/absoluteUrl'](track.album.cover.square_crop)"> <img class="ui mini image" v-if="track.album && track.album.cover && track.album.cover.original" :src="$store.getters['instance/absoluteUrl'](track.album.cover.square_crop)">
<img class="ui mini image" v-else src="../assets/audio/default-cover.png"> <img class="ui mini image" v-else src="../assets/audio/default-cover.png">
</td> </td>
<td colspan="3" @click="$store.dispatch('queue/currentIndex', index)"> <td colspan="3" @click="$store.dispatch('queue/currentIndex', index)">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment