Browse Source

[tvigle] Fix like count

Sergey M․ 11 years ago
parent
commit
bf4adcac66
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/tvigle.py

+ 2 - 1
youtube_dl/extractor/tvigle.py

@@ -7,6 +7,7 @@ from .common import InfoExtractor
 from ..utils import (
 from ..utils import (
     unified_strdate,
     unified_strdate,
     clean_html,
     clean_html,
+    int_or_none,
 )
 )
 
 
 
 
@@ -42,7 +43,7 @@ class TvigleIE(InfoExtractor):
             description = clean_html(description)
             description = clean_html(description)
         thumbnail = video_data.get('img')
         thumbnail = video_data.get('img')
         upload_date = unified_strdate(video.get('date'))
         upload_date = unified_strdate(video.get('date'))
-        like_count = video.get('vtp')
+        like_count = int_or_none(video.get('vtp'))
 
 
         formats = []
         formats = []
         for num, (format_id, format_note) in enumerate([['low_file', 'SQ'], ['file', 'HQ'], ['hd', 'HD 720']]):
         for num, (format_id, format_note) in enumerate([['low_file', 'SQ'], ['file', 'HQ'], ['hd', 'HD 720']]):