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

Now reset player colors when track has no coverNow reset player colors when track has no cover

parent 9a69a8f5
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ Changelog
0.5 (Unreleased)
----------------
- Front: Now reset player colors when track has no cover (#46)
0.4 (2018-02-18)
----------------
......
......@@ -232,7 +232,7 @@ export default {
},
watch: {
currentTrack (newValue) {
if (!newValue) {
if (!newValue || !newValue.album.cover) {
this.ambiantColors = this.defaultAmbiantColors
}
},
......
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