Fix normalized album duration values (#205)

This commit is contained in:
jeffvli 2023-08-11 21:08:13 -07:00
parent 663893dccb
commit 877b2e9f3b
2 changed files with 2 additions and 3 deletions

View file

@ -208,7 +208,7 @@ const normalizeAlbum = (
})),
backdropImageUrl: null,
createdAt: item.DateCreated,
duration: item.RunTimeTicks / 10000000,
duration: item.RunTimeTicks / 10000,
genres: item.GenreItems?.map((entry) => ({
id: entry.Id,
imageUrl: null,