fix Song domain type year value

This commit is contained in:
jeffvli
2025-11-15 13:42:24 -08:00
parent 48feb9f656
commit 81d3d2e620
4 changed files with 6 additions and 6 deletions
@@ -291,7 +291,7 @@ const normalizeSong = (
: item.ProductionYear
? new Date(item.ProductionYear, 0, 1).toISOString()
: null,
releaseYear: item.ProductionYear ? String(item.ProductionYear) : null,
releaseYear: item.ProductionYear || null,
sampleRate,
size,
streamUrl,