From 423fb144a0209c7acb74dc756faa37e19b7aa905 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 24 Aug 2021 15:58:13 -0400 Subject: some fixes and hacky fetch member work arround --- src/lib/utils/BushLogger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/utils') diff --git a/src/lib/utils/BushLogger.ts b/src/lib/utils/BushLogger.ts index e716e68..fd0aa4d 100644 --- a/src/lib/utils/BushLogger.ts +++ b/src/lib/utils/BushLogger.ts @@ -17,7 +17,7 @@ export class BushLogger { if (index % 2 !== 0) { tempParsedArray.push(discordFormat ? `**${Util.escapeMarkdown(value)}**` : color ? chalk[color](value) : value); } else { - tempParsedArray.push(Util.escapeMarkdown(value)); + tempParsedArray.push(discordFormat ? Util.escapeMarkdown(value) : value); } }); return tempParsedArray.join(''); -- cgit