mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[24video] Fix comment count extraction
This commit is contained in:
parent
b69b2ff736
commit
bd6fb007de
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ def _real_extract(self, url):
|
|||
r'<span class="video-views">(\d+) просмотр',
|
||||
webpage, 'view count', fatal=False))
|
||||
comment_count = int_or_none(self._html_search_regex(
|
||||
r'<div class="comments-title" id="comments-count">(\d+) комментари',
|
||||
r'<a[^>]+href="#tab-comments"[^>]*>(\d+) комментари',
|
||||
webpage, 'comment count', fatal=False))
|
||||
|
||||
# Sets some cookies
|
||||
|
|
Loading…
Reference in a new issue