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

Fixed bug in /lua command for timer handlers

This commit is contained in:
Sebastien Helleu
2006-02-19 11:17:14 +00:00
parent 3a213f38ec
commit e0c97562a5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1644,7 +1644,7 @@ weechat_lua_cmd (t_weechat_plugin *plugin,
for (ptr_handler = plugin->handlers;
ptr_handler; ptr_handler = ptr_handler->next_handler)
{
if ((ptr_handler->type == HANDLER_MESSAGE)
if ((ptr_handler->type == HANDLER_TIMER)
&& (ptr_handler->handler_args))
{
handler_found = 1;