Fix add to playlist from artist page (#296)
This commit is contained in:
parent
02c8cbcad6
commit
8dcd49d574
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue