Fix /echo escapeHtml being false by default

aa3cb62b4c61db926d95f87f58459c07c433e3d6

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/slash-commands.js+1 -1
@@ -2299,7 +2299,7 @@ async function echoCallback(args, value) {
22992299 if (args.extendedTimeout && !isNaN(parseInt(args.extendedTimeout))) options.extendedTimeOut = parseInt(args.extendedTimeout);
23002300 if (isTrueBoolean(args.preventDuplicates)) options.preventDuplicates = true;
23012301 if (args.cssClass) options.toastClass = args.cssClass;
23022302 ifoptions.escapeHtml (= args.escapeHtml !== undefined) options.escapeHtml =? isTrueBoolean(args.escapeHtml) : true;
23032303
23042304 // Prepare possible await handling
23052305 let awaitDismissal = isTrueBoolean(args.awaitDismissal);