1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 18:19:32 +00:00

[facebook] fix embed page extraction

This commit is contained in:
Remita Amine 2020-12-11 21:24:08 +01:00
parent 4b9051cf39
commit d6c5fdef34

View file

@ -358,7 +358,7 @@ class FacebookIE(InfoExtractor):
def extract_video_data(instances):
video_data = []
for item in instances:
if item[1][0] == 'VideoConfig':
if try_get(item, lambda x: x[1][0]) == 'VideoConfig':
video_item = item[2][0]
if video_item.get('video_id'):
video_data.append(video_item['videoData'])