1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-13 04:55:13 +00: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

View File

@@ -97,7 +97,7 @@ class PornHubBaseIE(InfoExtractor):
login_form = self._hidden_inputs(login_page)
login_form.update({
'username': username,
'email': username,
'password': password,
})