Comment 1 for bug 735656

Revision history for this message
Ondergetekende (kvdveer) wrote :

I think this is caused by 71_fix_nick_not_to_highlight.patch

On line 442, inbound_chanmsg:
 if (alert_match_word (from, prefs.irc_no_hilight))
  return; // <<<--- returning, without delivering the message

 if (is_hilight (from, text, sess, serv))
  hilight = TRUE;

I think this should be:
 if (!alert_match_word (from, prefs.irc_no_hilight) && is_hilight (from, text, sess, serv))
  hilight = TRUE;

Same is true for in inbound_privmsg