1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-21 18:22:30 +01:00

[pp] add 'error' event

This commit is contained in:
Mike Fährmann 2024-10-19 20:30:34 +02:00
parent 5d984f35aa
commit 2e1dab3036
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 5 additions and 0 deletions

View File

@ -6126,6 +6126,8 @@ Description
After a file got moved to its target location
``skip``
When skipping a file download
``error``
After a file download failed
``post``
When starting to download all files of a `post`,
e.g. a Tweet on Twitter or a post on Patreon.

View File

@ -347,6 +347,9 @@ class DownloadJob(Job):
self.status |= 4
self.log.error("Failed to download %s",
pathfmt.filename or url)
if "error" in hooks:
for callback in hooks["error"]:
callback(pathfmt)
return
if not pathfmt.temppath: