[vine] Relax `alt_title` (Closes #5677)

This commit is contained in:
Sergey M․ 2015-05-12 01:54:56 +06:00
parent 6d3f5935e5
commit d4b963d0a6
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class VineIE(InfoExtractor):
return {
'id': video_id,
'title': self._og_search_title(webpage),
'alt_title': self._og_search_description(webpage),
'alt_title': self._og_search_description(webpage, default=None),
'description': data['description'],
'thumbnail': data['thumbnailUrl'],
'upload_date': unified_strdate(data['created']),