diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-02 03:29:48 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-02 03:29:48 +0600 |
commit | 78a3ff33ab686bc6fc75735e2b2a5935b80311be (patch) | |
tree | 2c4893013e8d274a247a7cc90e69f42abdba8df5 | |
parent | 881dbc86c4e70252a5b8e5c726a6f2a32ff878c1 (diff) |
[vevo:playlist] Add fallback for playlist id
-rw-r--r-- | youtube_dl/extractor/vevo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 49cb3f479..bbe29fc51 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -423,5 +423,5 @@ class VevoPlaylistIE(VevoBaseIE): for src in playlist['isrcs']] return self.playlist_result( - entries, playlist.get('playlistId'), + entries, playlist.get('playlistId') or playlist_id, playlist.get('name'), playlist.get('description')) |