[job] do not reset skip count when 'skip-filter' fails (#7433)

This commit is contained in:
Mike Fährmann
2025-04-27 19:16:02 +02:00
parent d7c365e08c
commit 19fc4e0ba4

View File

@@ -496,8 +496,6 @@ class DownloadJob(Job):
self._skipcnt += 1
if self._skipcnt >= self._skipmax:
raise self._skipexc()
else:
self._skipcnt = 0
def download(self, url):
"""Download 'url'"""