mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
Merge pull request #864 from jacobian/vimeopro
Fixed an error downloading vimeo pro videos.
This commit is contained in:
commit
1132c10dc2
1 changed files with 1 additions and 1 deletions
|
@ -1099,7 +1099,7 @@ def _real_extract(self, url, new_video=True):
|
|||
|
||||
# Extract uploader and uploader_id
|
||||
video_uploader = config["video"]["owner"]["name"]
|
||||
video_uploader_id = config["video"]["owner"]["url"].split('/')[-1]
|
||||
video_uploader_id = config["video"]["owner"]["url"].split('/')[-1] if config["video"]["owner"]["url"] else None
|
||||
|
||||
# Extract video thumbnail
|
||||
video_thumbnail = config["video"]["thumbnail"]
|
||||
|
|
Loading…
Reference in a new issue