[vube] Fix comment count
This commit is contained in:
parent
388841f819
commit
b090af5922
2 changed files with 29 additions and 9 deletions
|
@ -301,8 +301,12 @@ class InfoExtractor(object):
|
|||
def _download_json(self, url_or_request, video_id,
|
||||
note=u'Downloading JSON metadata',
|
||||
errnote=u'Unable to download JSON metadata',
|
||||
transform_source=None):
|
||||
json_string = self._download_webpage(url_or_request, video_id, note, errnote)
|
||||
transform_source=None,
|
||||
fatal=True):
|
||||
json_string = self._download_webpage(
|
||||
url_or_request, video_id, note, errnote, fatal=fatal)
|
||||
if (not fatal) and json_string is False:
|
||||
return None
|
||||
if transform_source:
|
||||
json_string = transform_source(json_string)
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue