From 1abc442f1e51e2267cf23e1a9d1221c27a04a839 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Thu, 9 Feb 2023 12:58:37 +1100 Subject: [PATCH] Add webhook token to filter --- src/commands/dev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/dev.ts b/src/commands/dev.ts index 4a6c107..dbe12e3 100644 --- a/src/commands/dev.ts +++ b/src/commands/dev.ts @@ -50,7 +50,7 @@ export default { } else { output = '\n' + String(output); } - [client.tokens.token_main,client.tokens.token_beta,client.tokens.token_toast,client.tokens.token_tae].forEach((x)=>{ + [client.tokens.token_main,client.tokens.token_beta,client.tokens.token_toast,client.tokens.token_tae,client.tokens.webhook_url].forEach((x)=>{ const regexp = new RegExp(x as string,'g'); output = output.replace(regexp, ':noblank: No token?'); })