Skip to content

Commit

Permalink
Merge pull request #105 from rshigemura/master
Browse files Browse the repository at this point in the history
Fixed cipher error
  • Loading branch information
hbmartin authored Jul 10, 2024
2 parents cfe392a + c4117cb commit d3a9f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytube/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def apply_descrambler(stream_data: Dict, key: str) -> None:
]
except KeyError:
cipher_url = [
parse_qs(formats[i]["cipher"]) for i, data in enumerate(formats)
parse_qs(formats[i]["signatureCipher"]) for i, data in enumerate(formats)
]
stream_data[key] = [
{
Expand Down

0 comments on commit d3a9f51

Please # to comment.