Fix strange behaviour on Track list

This commit is contained in:
nemunaire 2022-10-15 13:39:30 +02:00
parent 14b95876c5
commit 8e432c9b6b

View File

@ -73,7 +73,9 @@
if (edit) { if (edit) {
goto('musiks/tracks/' + track.id); goto('musiks/tracks/' + track.id);
} else { } else {
track = track.toggleEnable() track.toggleEnable().then((t) => {
refresh_tracks();
})
} }
}} }}
> >