diff --git a/app.py b/app.py index 7a0ef1e..ee547ef 100644 --- a/app.py +++ b/app.py @@ -129,7 +129,11 @@ H2T.ignore_images = True def is_blacklisted(url: str) -> bool: - return urlparse(url).netloc in BLACKLIST + try: + return urlparse(url).netloc in BLACKLIST + except Exception: + logger.exception(f"failed to blacklist for {url}") + return False def verify_pass(pwd):