summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authordestruc7i0n <6181960+destruc7i0n@users.noreply.github.com>2020-08-04 19:09:27 -0400
committerGitHub <noreply@github.com>2020-08-04 19:09:27 -0400
commit49bcccec71e38cc487bfd2bc7b05294357487eb7 (patch)
tree23fd84df26563d6c4db21213d1eb24dfccf64ae0
parentMerge pull request #59 from MarshallOliver/master (diff)
parentUpdate regex for replaceDiscordMentions (diff)
downloadshulker-49bcccec71e38cc487bfd2bc7b05294357487eb7.tar.gz
shulker-49bcccec71e38cc487bfd2bc7b05294357487eb7.zip
Merge pull request #61 from MarshallOliver/Discord-mentions-regex
Update regex for replaceDiscordMentions
-rw-r--r--src/Discord.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Discord.ts b/src/Discord.ts
index bb3b9a2..12ac656 100644
--- a/src/Discord.ts
+++ b/src/Discord.ts
@@ -148,7 +148,7 @@ class Discord {
   }
 
   private replaceDiscordMentions(message: string): string {
-    const possibleMentions = message.match(/@*.*#[0-9]{4}/gim)
+    const possibleMentions = message.match(/@[^#\s]*[#]?[0-9]{4}/gim)
     if (possibleMentions) {
       for (let mention of possibleMentions) {
         const mentionParts = mention.split('#')