mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-03-11 17:15:37 +00:00
[scraper] escape amp html
This commit is contained in:
parent
529f5ba76c
commit
17a2a14f49
1 changed files with 2 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue