解决解析报错问题

This commit is contained in:
Jing Ling
2020-08-13 17:35:04 +08:00
parent 75ac27b07a
commit 091167acb2
+4
View File
@@ -116,7 +116,11 @@ def filter_name(path, black_name):
def filter_url(domain, url, black_name):
try:
raw_url = parse.urlparse(url)
except Exception as e: # 解析失败则跳过该URL
logger.log('DEBUG', url, e.args)
return True
scheme = raw_url.scheme.lower()
if not scheme:
return True