remove similarSongs from autodj when music folder is selected (#1451)

- Similar songs queries for both Subsonic/Jellyfin do not support querying by musicFolderId
This commit is contained in:
jeffvli
2025-12-28 14:09:22 -08:00
parent d5d995de5f
commit 0a54f7c44c
5 changed files with 75 additions and 24 deletions
+1
View File
@@ -1584,6 +1584,7 @@ export type SimilarSongsArgs = BaseEndpointArgs & {
export type SimilarSongsQuery = {
count?: number;
musicFolderId?: string | string[];
songId: string;
};
+1
View File
@@ -10,6 +10,7 @@ export enum ServerFeature {
PUBLIC_PLAYLIST = 'publicPlaylist',
SERVER_PLAY_QUEUE = 'serverPlayQueue',
SHARING_ALBUM_SONG = 'sharingAlbumSong',
SIMILAR_SONGS_MUSIC_FOLDER = 'similarSongsMusicFolder',
TAGS = 'tags',
TRACK_ALBUM_ARTIST_SEARCH = 'trackAlbumArtistSearch',
}