[web] Remove unused variable

This commit is contained in:
Alain Nussbaumer 2024-04-21 16:14:55 +02:00
parent 5115e04664
commit 2fda829ac4

View File

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