🐛 fix invalid int literal

This commit is contained in:
oskvr37
2025-02-07 19:18:09 +01:00
parent 0122e68afe
commit 43c756904e
+1 -1
View File
@@ -92,7 +92,7 @@ def addMetadata(
"date": str(track.streamStartDate)
if track.streamStartDate
else "",
"bpm": str(track.bpm or ""),
"bpm": str(track.bpm or 0),
}
)