remove unescaping of pipes

This commit is contained in:
LenAnderson
2024-04-16 16:46:00 -04:00
parent 19e997ccbe
commit b68d5d922d

View File

@ -72,7 +72,6 @@ export class SlashCommandClosure {
// unescape value // unescape value
if (typeof v == 'string') { if (typeof v == 'string') {
v = v v = v
?.replace(/\\\|/g, '|')
?.replace(/\\\{/g, '{') ?.replace(/\\\{/g, '{')
?.replace(/\\\}/g, '}') ?.replace(/\\\}/g, '}')
; ;
@ -96,7 +95,6 @@ export class SlashCommandClosure {
// unescape value // unescape value
if (typeof v == 'string') { if (typeof v == 'string') {
v = v v = v
?.replace(/\\\|/g, '|')
?.replace(/\\\{/g, '{') ?.replace(/\\\{/g, '{')
?.replace(/\\\}/g, '}') ?.replace(/\\\}/g, '}')
; ;
@ -136,7 +134,6 @@ export class SlashCommandClosure {
// unescape named argument // unescape named argument
if (typeof args[key] == 'string') { if (typeof args[key] == 'string') {
args[key] = args[key] args[key] = args[key]
?.replace(/\\\|/g, '|')
?.replace(/\\\{/g, '{') ?.replace(/\\\{/g, '{')
?.replace(/\\\}/g, '}') ?.replace(/\\\}/g, '}')
; ;
@ -184,7 +181,6 @@ export class SlashCommandClosure {
// unescape unnamed argument // unescape unnamed argument
if (typeof value == 'string') { if (typeof value == 'string') {
value = value value = value
?.replace(/\\\|/g, '|')
?.replace(/\\\{/g, '{') ?.replace(/\\\{/g, '{')
?.replace(/\\\}/g, '}') ?.replace(/\\\}/g, '}')
; ;