Fixed "Fixed check for corrupted FLACs"
This commit is contained in:
parent
a3e9cdeca1
commit
7088bff58d
|
@ -423,7 +423,7 @@ class DownloadJob:
|
||||||
except DownloadCancelled:
|
except DownloadCancelled:
|
||||||
remove(writepath)
|
remove(writepath)
|
||||||
raise DownloadCancelled
|
raise DownloadCancelled
|
||||||
except HTTPError, DownloadEmpty:
|
except (HTTPError, DownloadEmpty):
|
||||||
remove(writepath)
|
remove(writepath)
|
||||||
if track.fallbackId != "0":
|
if track.fallbackId != "0":
|
||||||
logger.warn(f"[{track.mainArtist['name']} - {track.title}] Track not available, using fallback id")
|
logger.warn(f"[{track.mainArtist['name']} - {track.title}] Track not available, using fallback id")
|
||||||
|
|
Loading…
Reference in New Issue