diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-08-20 22:28:31 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-08-20 22:28:31 +0000 |
commit | 1f801ff07964a9c2d605a97715b5fea0aafd078c (patch) | |
tree | c09618afaca5bb6f8de939baf1d2383afc8360af /src/irc/irc-recv.c | |
parent | 0d2afafbd02c3a8a847f584b793b84b612684011 (diff) | |
download | weechat-1f801ff07964a9c2d605a97715b5fea0aafd078c.zip |
Added hotlist in session file when using /upgrade command (task #5449)
Diffstat (limited to 'src/irc/irc-recv.c')
-rw-r--r-- | src/irc/irc-recv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c index 3010ad5bf..0428a6363 100644 --- a/src/irc/irc-recv.c +++ b/src/irc/irc-recv.c @@ -413,7 +413,7 @@ irc_cmd_recv_invite (t_irc_server *server, char *host, char *nick, char *argumen GUI_COLOR(COLOR_WIN_CHAT), GUI_COLOR(COLOR_WIN_CHAT_NICK), nick); - hotlist_add (HOTLIST_HIGHLIGHT, server, server->buffer); + hotlist_add (HOTLIST_HIGHLIGHT, server, server->buffer, 0); gui_status_draw (gui_current_window->buffer, 1); } } @@ -1023,7 +1023,7 @@ irc_cmd_recv_notice (t_irc_server *server, char *host, char *nick, char *argumen (ascii_strcasecmp (nick, "chanserv") != 0) && (ascii_strcasecmp (nick, "memoserv") != 0)) { - hotlist_add (HOTLIST_PRIVATE, server, server->buffer); + hotlist_add (HOTLIST_PRIVATE, server, server->buffer, 0); gui_status_draw (gui_current_window->buffer, 1); } } |