From ed27009285d762ba35e99b9bc3d4bca2685b7fea Mon Sep 17 00:00:00 2001 From: TingPing Date: Sun, 7 Apr 2013 20:41:29 -0400 Subject: Notify away status of friends --- src/common/inbound.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/common/inbound.c') diff --git a/src/common/inbound.c b/src/common/inbound.c index 58a458b0..29eaf754 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -1021,7 +1021,16 @@ inbound_away_notify (server *serv, char *nick, char *reason) { sess = list->data; if (sess->server == serv) + { userlist_set_away (sess, nick, reason ? TRUE : FALSE); + if (sess == serv->front_session && notify_is_in_list (serv, nick)) + { + if (reason) + EMIT_SIGNAL (XP_TE_NOTIFYAWAY, sess, nick, reason, NULL, NULL, 0); + else + EMIT_SIGNAL (XP_TE_NOTIFYBACK, sess, nick, NULL, NULL, NULL, 0); + } + } list = list->next; } } -- cgit 1.4.1