[web] Remove unused variable

This commit is contained in:
Alain Nussbaumer 2024-04-21 16:14:55 +02:00
parent 5115e04664
commit 2fda829ac4
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ export default {
mark_played() {
webapi
.library_album_track_update(this.item.id, { play_count: 'played' })
.then(({ data }) => {
.then(() => {
this.$emit('play-count-changed')
this.$emit('close')
})