1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00

When reconnected to server, send the away message directly to server instead

of calling /AWAY, so the away is set only to that one server..


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2818 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-05-19 12:59:59 +00:00 committed by cras
parent e2ffdfec50
commit 7437bbea5f

View File

@ -68,7 +68,7 @@ static void sig_connected(IRC_SERVER_REC *server)
return;
if (server->connrec->away_reason != NULL)
signal_emit("command away", 2, server->connrec->away_reason, server, NULL);
irc_send_cmdv(server, "AWAY :%s", server->connrec->away_reason);
}
static void event_nick_collision(IRC_SERVER_REC *server, const char *data)