2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-15 15:53:30 +00:00

Merge remote-tracking branch 'upstream/master' into multiple-input-files

This commit is contained in:
j433866
2019-06-14 14:56:16 +01:00
5 changed files with 11 additions and 11 deletions

View File

@@ -115,7 +115,7 @@ class App {
handleError(err, logToConsole) {
if (logToConsole) log.error(err);
const msg = err.displayStr || err.toString();
this.alert(msg, this.options.errorTimeout, !this.options.showErrors);
this.alert(Utils.escapeHtml(msg), this.options.errorTimeout, !this.options.showErrors);
}