[bugfix]: use proper check for OS lyric existence
This commit is contained in:
parent
a3573d4f9a
commit
918842e3a5
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ export const useSongLyricsBySong = (
|
||||||
})
|
})
|
||||||
.catch(console.error);
|
.catch(console.error);
|
||||||
|
|
||||||
if (subsonicLyrics) {
|
if (subsonicLyrics?.length) {
|
||||||
return subsonicLyrics;
|
return subsonicLyrics;
|
||||||
}
|
}
|
||||||
} else if (hasFeature(server, ServerFeature.LYRICS_SINGLE_STRUCTURED)) {
|
} else if (hasFeature(server, ServerFeature.LYRICS_SINGLE_STRUCTURED)) {
|
||||||
|
|
Reference in a new issue