Fix #549 after test

This commit is contained in:
Joseph Garrone
2024-05-28 00:23:48 +02:00
parent c3ee8e10e6
commit 56d6d8001a
3 changed files with 7 additions and 8 deletions

View File

@ -193,7 +193,7 @@ function decodeHtmlEntities(htmlStr){
decodeHtmlEntities.element = element;
}
element.innerHTML = htmlStr;
return textarea.value;
return element.value;
}
})();