Browse Source

[vk] Make view count optional (closes #14979)

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
498a8a4ca5
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/vk.py

+ 1
- 1
youtube_dl/extractor/vk.py View File

@ -414,7 +414,7 @@ class VKIE(VKBaseIE):
view_count = str_to_int(self._search_regex(
r'class=["\']mv_views_count[^>]+>\s*([\d,.]+)',
info_page, 'view count', fatal=False))
info_page, 'view count', default=None))
formats = []
for format_id, format_url in data.items():


Loading…
Cancel
Save