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,
|
container: item.contentType,
|
||||||
createdAt: item.created,
|
createdAt: item.created,
|
||||||
discNumber: item.discNumber || 1,
|
discNumber: item.discNumber || 1,
|
||||||
duration: item.duration || 0,
|
duration: item.duration ? item.duration * 1000 : 0,
|
||||||
gain: null,
|
gain: null,
|
||||||
genres: item.genre
|
genres: item.genre
|
||||||
? [
|
? [
|
||||||
|
|
Reference in a new issue