Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Try and fix traceback
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Feb 16, 2024
1 parent 61dbe23 commit 52ac534
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.1.69"
__version__ = "5.1.71"
3 changes: 3 additions & 0 deletions cyberdrop_dl/scraper/crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ async def startup(self) -> None:

async def run(self, item: ScrapeItem) -> None:
"""Runs the crawler loop"""
if not item.url.host:
return

self.waiting_items += 1
await self._lock.acquire()
self.waiting_items -= 1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cyberdrop-dl"
version = "5.1.69"
version = "5.1.71"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 52ac534

Please sign in to comment.