Fixed "Fixed check for corrupted FLACs"

This commit is contained in:
RemixDev 2020-08-15 23:43:39 +02:00
parent a3e9cdeca1
commit 7088bff58d
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ class DownloadJob:
except DownloadCancelled:
remove(writepath)
raise DownloadCancelled
except HTTPError, DownloadEmpty:
except (HTTPError, DownloadEmpty):
remove(writepath)
if track.fallbackId != "0":
logger.warn(f"[{track.mainArtist['name']} - {track.title}] Track not available, using fallback id")