diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-11-17 23:25:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-17 23:25:05 +0000 |
commit | da252d9d322af3e2178ac5eae324809502a0a862 (patch) | |
tree | b5fa27f62c979684c64e08bd32c57b7e15c27700 /yt_dlp/extractor/facebook.py | |
parent | e079ffbda66de150c0a9ebef05e89f61bb4d5f76 (diff) |
[cleanup] Misc (#11554)
Closes #6884
Authored by: bashonly, Grub4K, seproDev
Co-authored-by: Simon Sawicki <contact@grub4k.xyz>
Co-authored-by: sepro <sepro@sepr0.com>
Diffstat (limited to 'yt_dlp/extractor/facebook.py')
-rw-r--r-- | yt_dlp/extractor/facebook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/facebook.py b/yt_dlp/extractor/facebook.py index 91e2f3489..c07efcd58 100644 --- a/yt_dlp/extractor/facebook.py +++ b/yt_dlp/extractor/facebook.py @@ -569,7 +569,7 @@ class FacebookIE(InfoExtractor): if dash_manifest: formats.extend(self._parse_mpd_formats( compat_etree_fromstring(urllib.parse.unquote_plus(dash_manifest)), - mpd_url=url_or_none(video.get('dash_manifest_url')) or mpd_url)) + mpd_url=url_or_none(vid_data.get('dash_manifest_url')) or mpd_url)) def process_formats(info): # Downloads with browser's User-Agent are rate limited. Working around |