Renaming to GetOtherPlaylists

This commit is contained in:
Thomas Viesmose Birch
2024-05-04 15:27:43 +02:00
parent 7e1136acad
commit 1b31aaf549
6 changed files with 35 additions and 16 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import {
ListenerList,
Playlists,
PlaylistSongs,
GetAllPlaylists,
GetOtherPlaylists,
QueueSong, RemoveFromAutoPlay, RemovePlaylist,
RemoveSongFromPlaylist,
ReorderSong,
@@ -77,7 +77,7 @@ export default function parseMessage(message: string): StuenMessage | null {
case 'RemoveSongFromPlaylist':
return new RemoveSongFromPlaylist(data.song, data.playlist);
case 'GetAllPlaylists':
return new GetAllPlaylists();
return new GetOtherPlaylists();
case 'ToggleTag':
return new ToggleTag(data.song, data.tag);
case 'Shuffle':