1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2026-04-24 00:00:07 -04:00

Merge pull request #864 from jacobian/vimeopro

Fixed an error downloading vimeo pro videos.
This commit is contained in:
Jaime Marquínez Ferrándiz
2013-06-04 10:15:12 -07:00
+1 -1
View File
@@ -1099,7 +1099,7 @@ class VimeoIE(InfoExtractor):
# 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"]