Skip to content

Commit

Permalink
Hmm playlist_edit workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchray committed Dec 17, 2024
1 parent a0982a5 commit aa8c4da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/action/drawers/drawerPlaylistEdit.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@
});
}
if (result.error) {
errorHandler("saving playlist", result.error);
// 'Bad Request' can mean there were no changes... so only log if its not that
if (result.error?.errorMessage !== "Bad Request") {
errorHandler("saving playlist", result);
return;
}
Expand Down

0 comments on commit aa8c4da

Please sign in to comment.