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

[facebook] redirect Mobile URLs to Desktop URLs

closes #24831
closes #25624
This commit is contained in:
Remita Amine 2020-12-10 15:19:43 +01:00
parent 6c370bc149
commit 5c6e9f0b6c

View file

@ -306,7 +306,8 @@ class FacebookIE(InfoExtractor):
self._login()
def _extract_from_url(self, url, video_id, fatal_if_no_video=True):
webpage = self._download_webpage(url, video_id)
webpage = self._download_webpage(
url.replace('://m.facebook.com/', '://www.facebook.com/'), video_id)
video_data = None