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) {