From 0c00c5355f828d3a0006bce3829b73cffbf65f7d Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 21 Jul 2019 14:36:05 +0300 Subject: [PATCH] Fix certain emoji not being matched --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 95e1cfa5..e67b94c1 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -11,7 +11,7 @@ import { } from "eris"; import url from "url"; import tlds from "tlds"; -import emojiRegex from "emoji-regex"; +import emojiRegex from "emoji-regex/es2015/text"; import fs from "fs"; const fsp = fs.promises;