mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
Fix subsonic song duration
This commit is contained in:
parent
65f28bb9dc
commit
29a9a11085
@ -67,7 +67,7 @@ const normalizeSong = (
|
||||
container: item.contentType,
|
||||
createdAt: item.created,
|
||||
discNumber: item.discNumber || 1,
|
||||
duration: item.duration || 0,
|
||||
duration: item.duration ? item.duration * 1000 : 0,
|
||||
gain: null,
|
||||
genres: item.genre
|
||||
? [
|
||||
|
Loading…
Reference in New Issue
Block a user