Merge pull request #569 from evandroforks/limit_error_message_size

Also limit the size of the error message
This commit is contained in:
Damien Elmes 2020-04-20 11:14:53 +10:00 committed by GitHub
commit 385dbf88c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,11 +40,12 @@ function _updateQA(html, fadeTime, onupdate, onshown) {
qa.html(html);
} catch (err) {
qa.html(
"Invalid HTML on card: " +
err +
("\n" + err.stack)
.substring(0, 2000)
.replace(/\n/g, "<br />")
(
`Invalid HTML on card: ${String(err).substring(
0,
2000
)}\n` + String(err.stack).substring(0, 2000)
).replace(/\n/g, "<br />")
);
}
_runHook(onUpdateHook);