synced-lyrics: fix album name?

This commit is contained in:
Angelos Bouklis
2024-08-01 15:46:53 +03:00
parent e7f366b770
commit 473ea78f12

View File

@ -80,7 +80,7 @@ export const getLyricsList = async (
track_name: songData.title,
});
if (songData.album) {
if (songData.album?.length ?? 0 > 1) {
query.set('album_name', songData.album);
}