1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

Fixed bug on ignore with "mode" IRC command (bug #18058)

This commit is contained in:
Sebastien Helleu
2006-10-20 10:11:16 +00:00
parent a3878a522c
commit 2ee57a4af5
4 changed files with 6 additions and 0 deletions
+1
View File
@@ -5,6 +5,7 @@ ChangeLog - 2006-10-20
Version 0.2.2 (under dev!):
* fixed bug on ignore with "mode" IRC command (bug #18058)
* fixed crash when loading ruby script if file does not exist, with
Ruby >= 1.9 only (bug #18064)
* added date in plugin function get_buffer_data()
+2
View File
@@ -707,6 +707,8 @@ irc_cmd_recv_mode (t_irc_server *server, char *host, char *nick, char *arguments
ptr_channel = channel_search (server, arguments);
if (ptr_channel)
{
command_ignored |= ignore_check (host, "mode",
ptr_channel->name, server->name);
if (!command_ignored)
{
irc_display_prefix (server, ptr_channel->buffer, PREFIX_INFO);
+1
View File
@@ -5,6 +5,7 @@ ChangeLog - 2006-10-20
Version 0.2.2 (under dev!):
* fixed bug on ignore with "mode" IRC command (bug #18058)
* fixed crash when loading ruby script if file does not exist, with
Ruby >= 1.9 only (bug #18064)
* added date in plugin function get_buffer_data()
+2
View File
@@ -707,6 +707,8 @@ irc_cmd_recv_mode (t_irc_server *server, char *host, char *nick, char *arguments
ptr_channel = channel_search (server, arguments);
if (ptr_channel)
{
command_ignored |= ignore_check (host, "mode",
ptr_channel->name, server->name);
if (!command_ignored)
{
irc_display_prefix (server, ptr_channel->buffer, PREFIX_INFO);