1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

Fixed FIFO pipe buffer detection, away message (301) now displayed in query if

exists, otherwise on server buffer
This commit is contained in:
Sebastien Helleu
2005-12-17 11:54:41 +00:00
parent d5b58ff068
commit 04fda8a314
14 changed files with 100 additions and 84 deletions
+3 -6
View File
@@ -290,14 +290,11 @@ weechat_plugin_exec_command (t_weechat_plugin *plugin,
plugin_find_server_channel (server, channel, &ptr_server, &ptr_channel);
if (ptr_server && ptr_channel)
user_command (gui_buffer_find_window (ptr_channel->buffer),
ptr_server, command);
user_command (ptr_channel->buffer, ptr_server, command);
else if (ptr_server && (ptr_server->buffer))
user_command (gui_buffer_find_window (ptr_server->buffer),
ptr_server, command);
user_command (ptr_server->buffer, ptr_server, command);
else
user_command (gui_buffer_find_window (gui_buffers),
NULL, command);
user_command (gui_buffers, NULL, command);
}
/*