Fix: "Perhaps http" in output message

This commit is contained in:
yoshiko2
2023-05-04 04:47:50 +08:00
parent a3e4103336
commit c2e00e752f

View File

@@ -264,4 +264,8 @@ class Scraping:
return False
if data["number"] is None or data["number"] == "" or data["number"] == "null":
return False
if (data["cover"] is None or data["cover"] == "" or data["cover"] == "null") \
and (data["cover_small"] is None or data["cover_small"] == "" or
data["cover_small"] == "null"):
return False
return True