Skip to content

Commit

Permalink
[CI] auto update yt_dlp to upstream commit b095fd3fa9d58a65dc9b830bd6…
Browse files Browse the repository at this point in the history
…3b9d909422aa86
  • Loading branch information
github-actions[bot] committed Oct 5, 2023
1 parent 47a5c82 commit 19531e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/yt_dlp/extractor/gofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
5 changes: 1 addition & 4 deletions lib/yt_dlp/extractor/wrestleuniverse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion lib/yt_dlp_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cc8d8441524ec3442d7c0d3f8f33f15b66aa06f3
b095fd3fa9d58a65dc9b830bd63b9d909422aa86

0 comments on commit 19531e5

Please sign in to comment.