projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce80cac
)
[youtube] Restrict is_live extraction (closes #21782)
author
Sergey M․
<dstftw@gmail.com>
Sun, 14 Jul 2019 13:30:05 +0000
(20:30 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Sun, 14 Jul 2019 13:30:05 +0000
(20:30 +0700)
youtube_dl/extractor/youtube.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/youtube.py
b/youtube_dl/extractor/youtube.py
index 762611b89f5982c2c8273a07ffedfae0cba813c2..43a3fad9f81409419c3a2d35468f2c8e78006a72 100644
(file)
--- a/
youtube_dl/extractor/youtube.py
+++ b/
youtube_dl/extractor/youtube.py
@@
-1896,9
+1896,7
@@
class YoutubeIE(YoutubeBaseInfoExtractor):
view_count = int_or_none(video_details.get('viewCount'))
if is_live is None:
- is_live = bool_or_none(dict_get(
- video_details, ('isLive', 'isLiveContent'),
- skip_false_values=False))
+ is_live = bool_or_none(video_details.get('isLive'))
# Check for "rental" videos
if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info: