[behance] unescape embed URLs (#4742)

This commit is contained in:
Mike Fährmann
2023-10-30 13:37:09 +01:00
parent ca1d5c2c0c
commit fd8f58ad76
2 changed files with 6 additions and 3 deletions

View File

@@ -170,7 +170,8 @@ class BehanceGalleryExtractor(BehanceExtractor):
elif mtype == "EmbedModule":
embed = module.get("originalEmbed") or module.get("fluidEmbed")
if embed:
append(("ytdl:" + text.extr(embed, 'src="', '"'), module))
embed = text.unescape(text.extr(embed, 'src="', '"'))
append(("ytdl:" + embed, module))
return result