diff --git a/src/components/BottomBar.vue b/src/components/BottomBar.vue index 77e177e4..c694c5f1 100644 --- a/src/components/BottomBar.vue +++ b/src/components/BottomBar.vue @@ -89,8 +89,8 @@ function handleFav() { queue.currenttrack?.is_favorite, favType.track, queue.currenttrack?.trackhash || "", - () => queue.toggleFav(queue.currentindex), - () => queue.toggleFav(queue.currentindex) + () => null, + () => null ); } diff --git a/src/composables/fetch/playlists.ts b/src/composables/fetch/playlists.ts index e72e6168..8c39dfef 100644 --- a/src/composables/fetch/playlists.ts +++ b/src/composables/fetch/playlists.ts @@ -23,7 +23,7 @@ async function createNewPlaylist(playlist_name: string, track?: Track) { }); if (status == 201) { - new Notification("✅ Playlist created successfullly!"); + new Notification("Playlist created successfullly!"); if (track) { setTimeout(() => { @@ -75,11 +75,11 @@ async function addTrackToPlaylist(playlist: Playlist, track: Track) { }); if (status == 409) { - new Notification("Track already exists in playlist", NotifType.Info); + new Notification("Track already exists in playlist"); return; } - new Notification(track.title + " added to " + playlist.name); + new Notification(track.title + " added to " + playlist.name, NotifType.Success); } async function getPlaylist(pid: string) {