Skip to content

Commit

Permalink
Fix add to playlist from artist page (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffvli committed Oct 22, 2023
1 parent 02c8cbc commit 8dcd49d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/renderer/features/context-menu/context-menu-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,9 @@ export const ContextMenuProvider = ({ children }: ContextMenuProviderProps) => {
case LibraryItem.ALBUM:
albumId.push(item.id);
break;
case LibraryItem.ALBUM_ARTIST:
artistId.push(item.id);
break;
case LibraryItem.ARTIST:
artistId.push(item.id);
break;
Expand Down

1 comment on commit 8dcd49d

@vercel
Copy link

@vercel vercel bot commented on 8dcd49d Oct 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

feishin – ./

feishin.vercel.app
feishin-jeffvli.vercel.app
feishin-git-development-jeffvli.vercel.app

Please sign in to comment.