Skip to content

Commit

Permalink
[ie/vimeo] Fix login detection (bugfix for 4115c24) (yt-dlp#10906)
Browse files Browse the repository at this point in the history
Authored by: seproDev
  • Loading branch information
seproDev authored Sep 2, 2024
1 parent 7e41628 commit e8e6a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/vimeo.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _call_videos_api(self, video_id, jwt_token, unlisted_hash=None, **kwargs):

def _extract_original_format(self, url, video_id, unlisted_hash=None, jwt=None, api_data=None):
# Original/source formats are only available when logged in
if not self._get_cookies('https://vimeo.com/').get('is_logged_in'):
if not self._get_cookies('https://vimeo.com/').get('vimeo'):
return

query = {'action': 'load_download_config'}
Expand Down

0 comments on commit e8e6a98

Please sign in to comment.