File loading progress is now updated

This commit is contained in:
n1474335 2022-11-04 18:29:53 +00:00
parent 44c7a1e92d
commit 61d4c0ea63
3 changed files with 31 additions and 32 deletions

View file

@ -779,9 +779,9 @@ class Utils {
"`": "`"
};
return str.replace(/[&<>"'`]/g, function (match) {
return str ? str.replace(/[&<>"'`]/g, function (match) {
return HTML_CHARS[match];
});
}) : str;
}