1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-25 20:22:36 +01:00

[twitter] fix duplicate ArkoseLogin check

forgot to replace this in 9e5d65fbf3
This commit is contained in:
Mike Fährmann 2024-06-06 19:42:22 +02:00
parent 2c8aa9b2de
commit aa9be75d44
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -1886,8 +1886,9 @@ def _login_impl(extr, username, password):
raise exception.AuthenticationError("Login requires CAPTCHA")
elif subtask == "DenyLoginSubtask":
raise exception.AuthenticationError("Login rejected as suspicious")
elif subtask == "ArkoseLogin":
raise exception.AuthenticationError("No auth token cookie")
elif subtask == "LoginSuccessSubtask":
raise exception.AuthenticationError(
"No 'auth_token' cookie received")
else:
raise exception.StopExtraction("Unrecognized subtask %s", subtask)