mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[twitcasting] Enforce UTF-8 for POST payload (#2521)
Authored by: Lesmiscore
This commit is contained in:
parent
af5c1c553e
commit
5a13fdd225
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ def _real_extract(self, url):
|
|||
if video_password:
|
||||
request_data = urlencode_postdata({
|
||||
'password': video_password,
|
||||
})
|
||||
}, encoding='utf-8')
|
||||
webpage = self._download_webpage(
|
||||
url, video_id, data=request_data,
|
||||
headers={'Origin': 'https://twitcasting.tv'})
|
||||
|
|
Loading…
Reference in a new issue