diff --git a/KfChatDotNetKickBot/Extensions.cs b/KfChatDotNetKickBot/Extensions.cs index f3e8b15..761d795 100644 --- a/KfChatDotNetKickBot/Extensions.cs +++ b/KfChatDotNetKickBot/Extensions.cs @@ -7,7 +7,7 @@ public static class Extensions /// Emotes are encoded like [emote:161238:russW] which translates to -> https://files.kick.com/emotes/161238/fullsize public static string TranslateKickEmotes(this string s) { - Regex regex = new Regex(@"\[(.+?):(\d+):(\S+)\]"); + Regex regex = new Regex(@"\[(.+?):(\d+):(\S+?)\]"); var matches = regex.Matches(s); if (matches.Count == 0) {