mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-09-02 01:01:41 +03:00
Fix props getter
This commit is contained in:
@@ -501,7 +501,7 @@ class FacebookIE(InfoExtractor):
|
|||||||
raise ExtractorError('Account is locked.', expected=True)
|
raise ExtractorError('Account is locked.', expected=True)
|
||||||
|
|
||||||
if props := get_first(sjs_data, (
|
if props := get_first(sjs_data, (
|
||||||
'require', ..., ..., ..., '__bbox', 'require', ..., ..., ..., 'rootView', 'props',
|
'require', ..., ..., ..., '__bbox', 'require', ..., ..., ..., 'rootView',
|
||||||
lambda _, v: v['title'].startswith('This content isn\'t available'))):
|
lambda _, v: v['title'].startswith('This content isn\'t available'))):
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
f'Content unavailable. Facebook said: {props.get("body") or props["title"]}', expected=True)
|
f'Content unavailable. Facebook said: {props.get("body") or props["title"]}', expected=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user