summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/handle.c b/handle.c
index 796441e..422cd76 100644
--- a/handle.c
+++ b/handle.c
@@ -1060,7 +1060,7 @@ static bool isMention(const struct Message *msg) {
}
static const char *colorMentions(uint id, struct Message *msg) {
- char *split = strchr(msg->params[1], ':');
+ char *split = strstr(msg->params[1], ": ");
if (!split) {
split = strchr(msg->params[1], ' ');
if (split) split = strchr(&split[1], ' ');