Fixed bitrate fallback check

This commit is contained in:
RemixDev
2021-06-13 14:06:17 +02:00
parent f8b835229c
commit c42eff7f95
2 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,7 @@ class Track:
filesizes = {}
for key, value in response.items():
if key.startswith("FILESIZE_"):
filesizes[key] = value
filesizes[key] = int(value)
filesizes[key+"_TESTED"] = False
self.filesizes = filesizes