diff --git a/lib/yt_dlp/extractor/gofile.py b/lib/yt_dlp/extractor/gofile.py index 898390583..ef14b57d0 100644 --- a/lib/yt_dlp/extractor/gofile.py +++ b/lib/yt_dlp/extractor/gofile.py @@ -60,7 +60,7 @@ def _real_initialize(self): account_data = self._download_json( 'https://api.gofile.io/createAccount', None, note='Getting a new guest account') self._TOKEN = account_data['data']['token'] - self._set_cookie('gofile.io', 'accountToken', self._TOKEN) + self._set_cookie('.gofile.io', 'accountToken', self._TOKEN) def _entries(self, file_id): query_params = { diff --git a/lib/yt_dlp/extractor/wrestleuniverse.py b/lib/yt_dlp/extractor/wrestleuniverse.py index dd12804db..145246a14 100644 --- a/lib/yt_dlp/extractor/wrestleuniverse.py +++ b/lib/yt_dlp/extractor/wrestleuniverse.py @@ -190,10 +190,7 @@ class WrestleUniverseVODIE(WrestleUniverseBaseIE): def _real_extract(self, url): lang, video_id = self._match_valid_url(url).group('lang', 'id') metadata = self._download_metadata(url, video_id, lang, 'videoEpisodeFallbackData') - video_data = self._call_api(video_id, ':watch', 'watch', data={ - # 'deviceId' is required if ignoreDeviceRestriction is False - 'ignoreDeviceRestriction': True, - }) + video_data = self._call_api(video_id, ':watch', 'watch', data={'deviceId': self._DEVICE_ID}) return { 'id': video_id, diff --git a/lib/yt_dlp_version b/lib/yt_dlp_version index 3fd16ae00..2135be557 100644 --- a/lib/yt_dlp_version +++ b/lib/yt_dlp_version @@ -1 +1 @@ -cc8d8441524ec3442d7c0d3f8f33f15b66aa06f3 \ No newline at end of file +b095fd3fa9d58a65dc9b830bd63b9d909422aa86 \ No newline at end of file