Fix subsonic song duration
This commit is contained in:
parent
65f28bb9dc
commit
29a9a11085
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
? [
|
||||
|
|
Reference in a new issue