mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 10:03:33 +00:00
[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);
|
||||
|
||||
if (subsonicLyrics) {
|
||||
if (subsonicLyrics?.length) {
|
||||
return subsonicLyrics;
|
||||
}
|
||||
} else if (hasFeature(server, ServerFeature.LYRICS_SINGLE_STRUCTURED)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue