Fix add to playlist from artist page (#296)

This commit is contained in:
jeffvli 2023-10-22 16:18:55 -07:00
parent 02c8cbcad6
commit 8dcd49d574

View file

@ -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;