1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 10:39:12 +02:00

[ie/pornhub] Fix login by email address (#9914)

Closes #9717
Authored by: feederbox826
This commit is contained in:
feederbox826 2024-05-13 19:18:14 -04:00 committed by GitHub
parent 85ec2a337a
commit 518c1afc15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,7 +97,7 @@ def is_logged(webpage):
login_form = self._hidden_inputs(login_page)
login_form.update({
'username': username,
'email': username,
'password': password,
})