mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-23 20:37:42 +02:00
improve similar items fallback, make ND album artist for song actually album artist, fix full screen race
This commit is contained in:
@@ -16,10 +16,14 @@ export const useSimilarSongs = (args: QueryHookArgs<SimilarSongsQuery>) => {
|
||||
|
||||
return api.controller.getSimilarSongs({
|
||||
apiClientProps: { server, signal },
|
||||
query: { count: query.count ?? 50, songId: query.songId },
|
||||
query: {
|
||||
albumArtistIds: query.albumArtistIds,
|
||||
count: query.count ?? 50,
|
||||
songId: query.songId,
|
||||
},
|
||||
});
|
||||
},
|
||||
queryKey: queryKeys.albumArtists.detail(server?.id || '', query),
|
||||
queryKey: queryKeys.songs.similar(server?.id || '', query),
|
||||
...options,
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user