mirror of
https://github.com/weechat/weechat.git
synced 2026-07-04 16:53:14 +02:00
Use case insensitive comparison for string in redirected messages
This commit is contained in:
@@ -631,7 +631,7 @@ irc_redirect_message_match_hash (struct t_irc_redirect *redirect,
|
||||
if (!arguments_argv || (*value >= arguments_argc))
|
||||
return 0;
|
||||
|
||||
if (strcmp (arguments_argv[*value], redirect->string) != 0)
|
||||
if (weechat_strcasecmp (arguments_argv[*value], redirect->string) != 0)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user