We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbb486 commit 63c9ebfCopy full SHA for 63c9ebf
gallery_dl/extractor/facebook.py
@@ -113,7 +113,7 @@ def parse_photo_page(photo_page):
113
)
114
}
115
116
- text.nameext_from_url(text.rextract(photo["url"], "/", "?")[0], photo)
+ text.nameext_from_url(photo["url"], photo)
117
118
photo["followups_ids"] = []
119
for comment_raw in text.extract_iter(
@@ -204,7 +204,7 @@ def parse_video_page(video_page):
204
key=lambda x: int(x[0][:-1])
205
)[-1][1]
206
207
- text.nameext_from_url(text.rextract(video["url"], "/", "?")[0], video)
+ text.nameext_from_url(video["url"], video)
208
text.nameext_from_url(video["filename"] + ".m4a", audio)
209
210
return video, audio
0 commit comments