[scraper] escape amp html

This commit is contained in:
TheBeastLT
2020-04-28 13:21:52 +02:00
parent 529f5ba76c
commit 17a2a14f49

View File

@@ -90,7 +90,8 @@ function escapeTitle(title) {
}
function escapeHTML(title) {
return he.decode(title);
return he.decode(title)
.replace(/&/g, "&");
}
async function getImdbId(info, type) {