diff options
author | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2022-01-03 16:08:32 -0500 |
---|---|---|
committer | destruc7i0n <destruc7i0n@users.noreply.github.com> | 2022-01-03 16:08:32 -0500 |
commit | 3b0306b0f09d79426c117784092701e1a4d8133c (patch) | |
tree | 85d687f92776eaeb224bc30fac00eec304e858ef /src | |
parent | added debug for webhook ratelimit (diff) | |
download | shulker-3b0306b0f09d79426c117784092701e1a4d8133c.tar.gz shulker-3b0306b0f09d79426c117784092701e1a4d8133c.zip |
added tests
Diffstat (limited to 'src')
-rw-r--r-- | src/Discord.ts | 16 | ||||
-rw-r--r-- | src/DiscordWebhooks.ts | 2 |
2 files changed, 8 insertions, 10 deletions
diff --git a/src/Discord.ts b/src/Discord.ts index 1245145..110ce64 100644 --- a/src/Discord.ts +++ b/src/Discord.ts @@ -190,17 +190,15 @@ class Discord { } } } - - if (['here', 'everyone'].includes(username)) { - // remove these large pings - if (!this.config.ALLOW_HERE_EVERYONE_MENTIONS) { - message = message - .replace('@everyone', '@ everyone') - .replace('@here', '@ here') - } - } } } + + if (!this.config.ALLOW_HERE_EVERYONE_MENTIONS) { + message = message + .replace('@everyone', '@ everyone') + .replace('@here', '@ here') + } + return message } diff --git a/src/DiscordWebhooks.ts b/src/DiscordWebhooks.ts index 77f8575..d5440c7 100644 --- a/src/DiscordWebhooks.ts +++ b/src/DiscordWebhooks.ts @@ -41,7 +41,7 @@ class DiscordWebhooks { } private parseDiscordWebhook (url: string) { - const re = /discord[app]?.com\/api\/webhooks\/([^\/]+)\/([^\/]+)/ + const re = /discord(?:app)?.com\/api\/webhooks\/([^\/]+)\/([^\/]+)/ // the is of the webhook let id = null |