mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[dailymotion] Fix view count regex
In some languages they can be in the format '123,456' instead of '123.456'
This commit is contained in:
parent
f53c966a73
commit
563e405411
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ def _real_extract(self, url):
|
|||
return
|
||||
|
||||
view_count = str_to_int(self._search_regex(
|
||||
r'video_views_value[^>]+>([\d\.]+)<', webpage, u'view count'))
|
||||
r'video_views_value[^>]+>([\d\.,]+)<', webpage, u'view count'))
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
|
|
Loading…
Reference in a new issue