disable play button on artist dialog
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Artem Anufrij 2023-09-19 16:32:06 +02:00
parent 733b8eee91
commit 25b9b7b582
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,6 @@ export default {
if (item.parent.parent && item.parent.parent.tracks) {
parentId = item.parent.parent._id;
}
console.log(parentId);
this.$store.dispatch("user/resetProgress", parentId);
window.clearInterval(this.intervalProgress);

View File

@ -154,7 +154,7 @@ export default {
this.$store.dispatch("artists/uploadNewCover", this.selectedArtist);
},
loadUserProgress() {
if (this.selectedTrack.parent._id != this.selectedArtist._id)
if (!this.isPlaying || this.selectedTrack.parent.parent._id != this.selectedArtist._id)
this.$store.dispatch("user/getProgress", this.selectedArtist);
}
},
@ -165,6 +165,7 @@ export default {
selectedArtist: ["artists/selectedArtist"],
selectedTrack: ["tracks/selectedTrack"],
favourites: ["user/favourites"],
isPlaying: ["player/isPlaying"]
}),
cover() {
let covers = this.selectedArtist.covers;