mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-22 02:16:39 +02:00
Add support for OpenSubsonic enhanced lyrics (#2208)
This commit is contained in:
@@ -956,7 +956,10 @@ export const JellyfinController: InternalControllerEndpoint = {
|
||||
return res.body.Lyrics.map((lyric) => lyric.Text).join('\n');
|
||||
}
|
||||
|
||||
return res.body.Lyrics.map((lyric) => [lyric.Start! / 1e4, lyric.Text]);
|
||||
return res.body.Lyrics.map((lyric) => ({
|
||||
startMs: lyric.Start! / 1e4,
|
||||
text: lyric.Text,
|
||||
}));
|
||||
},
|
||||
getMusicFolderList: async (args) => {
|
||||
const { apiClientProps } = args;
|
||||
|
||||
Reference in New Issue
Block a user