Take first two words in colorMentions
This lets phrases like "hi june" get colored, but still doesn't get carried away.master
parent
c9590bab06
commit
4d532ec738
5
handle.c
5
handle.c
|
@ -529,7 +529,10 @@ static bool isMention(const struct Message *msg) {
|
|||
|
||||
static const char *colorMentions(size_t id, struct Message *msg) {
|
||||
char *split = strchr(msg->params[1], ':');
|
||||
if (!split) split = strchr(msg->params[1], ' ');
|
||||
if (!split) {
|
||||
split = strchr(msg->params[1], ' ');
|
||||
if (split) split = strchr(&split[1], ' ');
|
||||
}
|
||||
if (!split) split = &msg->params[1][strlen(msg->params[1])];
|
||||
for (char *ch = msg->params[1]; ch < split; ++ch) {
|
||||
if (iscntrl(*ch)) return "";
|
||||
|
|
Loading…
Reference in New Issue