Skip to content

Commit

Permalink
[poipiku] warn about incorrect passwords (mikf#3646)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Feb 11, 2023
1 parent 70ce45d commit ce996dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/poipiku.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def items(self):
page = self.request(
url, method="POST", headers=headers, data=data).json()["html"]

if page.startswith("You need to"):
if page.startswith(("You need to", "Password is incorrect")):
self.log.warning("'%s'", page)

for thumb in text.extract_iter(
Expand Down

0 comments on commit ce996dd

Please sign in to comment.