You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've verified that I'm running youtube-dl version 2021.04.26
I've searched the bugtracker for similar site feature requests including closed ones
Description
In the blinkx.py extractor, the returned dictionary as it is generated in the _real_extract() function would make the execution crash if the layout of the source data changed for optional fields. There it is a screenshot of the problematic portion of code.
The optional fields "uploader" (line 81) and "timestamp" (line 82) are concerned. As mentioned in the youtube-dl coding conventions, it would more robust to use the method get().
The text was updated successfully, but these errors were encountered:
pukkandan
added a commit
to yt-dlp/yt-dlp
that referenced
this issue
May 4, 2021
Checklist
Description
In the
blinkx.py
extractor, the returned dictionary as it is generated in the_real_extract()
function would make the execution crash if the layout of the source data changed for optional fields. There it is a screenshot of the problematic portion of code.The optional fields "uploader" (line 81) and "timestamp" (line 82) are concerned. As mentioned in the youtube-dl coding conventions, it would more robust to use the method
get()
.The text was updated successfully, but these errors were encountered: