Parcourir la source

add fallback to check wget output dir with port stripped

Nick Sweeting il y a 1 an
Parent
commit
0a25495520
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      archivebox/extractors/wget.py

+ 5 - 0
archivebox/extractors/wget.py

@@ -202,4 +202,9 @@ def wget_output_path(link: Link) -> Optional[str]:
     if search_dir.is_dir():
         return domain(link.url).replace(":", "+")
 
+    # fallback to just the domain dir without port
+    search_dir = Path(link.link_dir) / domain(link.url).split(":", 1)[0]
+    if search_dir.is_dir():
+        return domain(link.url).split(":", 1)[0]
+
     return None