mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
[bugfix]: don't be loading if top songs disabled
This commit is contained in:
@@ -373,7 +373,7 @@ export const AlbumArtistDetailContent = ({ background }: AlbumArtistDetailConten
|
|||||||
|
|
||||||
const isLoading =
|
const isLoading =
|
||||||
detailQuery?.isLoading ||
|
detailQuery?.isLoading ||
|
||||||
(server?.type === ServerType.NAVIDROME && topSongsQuery?.isLoading);
|
(server?.type === ServerType.NAVIDROME && enabledItem.topSongs && topSongsQuery?.isLoading);
|
||||||
|
|
||||||
if (isLoading) return <ContentContainer ref={cq.ref} />;
|
if (isLoading) return <ContentContainer ref={cq.ref} />;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user