Skip to content

Commit

Permalink
- Folders: playlist deletion within folders did not update the UI pro…
Browse files Browse the repository at this point in the history
…perly in some cases. [Issue 72](#72)

Resolve #72
  • Loading branch information
regorxxx committed Jan 2, 2024
1 parent f6f41a1 commit 41b4b62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main/playlist_manager/playlist_manager_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -5266,10 +5266,10 @@ function _list(x, y, w, h) {
this.removeFromFolder(item);
});
}
// Remove from folder
if (this.isInFolder(pls)) {
this.removeFromFolder(pls);
}
}
// Remove from folder
if (this.isInFolder(pls)) {
this.removeFromFolder(pls);
}
// Delete from data
const oldNameId = pls.nameId;
Expand Down

0 comments on commit 41b4b62

Please sign in to comment.