mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-02-06 22:17:17 +00:00
[networking] Fix POST requests with zero-length payloads (#7648)
Bugfix for 227bf1a33b
Authored by: bashonly
This commit is contained in:
@@ -41,7 +41,7 @@ class EttuTvIE(InfoExtractor):
|
||||
'device': 'desktop',
|
||||
})
|
||||
|
||||
stream_response = self._download_json(player_settings['streamAccess'], video_id, data={})
|
||||
stream_response = self._download_json(player_settings['streamAccess'], video_id, data=b'')
|
||||
|
||||
formats, subtitles = self._extract_m3u8_formats_and_subtitles(
|
||||
stream_response['data']['stream'], video_id, 'mp4')
|
||||
|
||||
Reference in New Issue
Block a user