Fix removing videos from local playlist

This commit is contained in:
Bnyro
2023-06-16 08:39:44 +02:00
parent f854af3581
commit d044accf5e
2 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ export default {
methods: {
removeVideo() {
this.$refs.removeButton.disabled = true;
this.removeVideoFromPlaylist(this.playlistId, null, this.index).then(json => {
this.removeVideoFromPlaylist(this.playlistId, this.index).then(json => {
if (json.error) alert(json.error);
else this.$emit("remove");
});