From 766756f64ac57fac53d1ca45c986736202289c88 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sat, 6 Dec 2025 17:55:12 -0800 Subject: [PATCH] add to playlist context menu for playlist songs --- .../features/context-menu/actions/add-to-playlist-action.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx b/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx index 2093f977f..a8be21ae5 100644 --- a/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx +++ b/src/renderer/features/context-menu/actions/add-to-playlist-action.tsx @@ -162,7 +162,7 @@ export const AddToPlaylistAction = ({ items, itemType }: AddToPlaylistActionProp try { let allSongIds: string[] = []; - if (itemType === LibraryItem.SONG) { + if (itemType === LibraryItem.SONG || itemType === LibraryItem.PLAYLIST_SONG) { allSongIds = items; } else if (itemType === LibraryItem.ALBUM) { for (const id of items) {