mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-18 12:17:51 +00:00
[youtube] Fix protocol-independent URLs (Fixes #1768)
This commit is contained in:
parent
80b9bbce86
commit
9f9be844fc
@ -1019,6 +1019,8 @@ def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
|
|||||||
"""Turn the encrypted s field into a working signature"""
|
"""Turn the encrypted s field into a working signature"""
|
||||||
|
|
||||||
if player_url is not None:
|
if player_url is not None:
|
||||||
|
if player_url.startswith(u'//'):
|
||||||
|
player_url = u'https:' + player_url
|
||||||
try:
|
try:
|
||||||
player_id = (player_url, len(s))
|
player_id = (player_url, len(s))
|
||||||
if player_id not in self._player_cache:
|
if player_id not in self._player_cache:
|
||||||
|
Loading…
Reference in New Issue
Block a user