aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn/msn.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-07-28 00:18:27 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2010-07-28 00:18:27 +0200
commit42553208d714b80a2a64d334f1659ec379042f8b (patch)
tree71b2d168be8b7c491d7a7985cdb35b9a271e056b /protocols/msn/msn.c
parentf6f5eee77be1a91563da38337bb80b04cb2ae071 (diff)
MSN: Don't show any "special" messages when breaking down switchboards with
queued messages. They were never supposed to be seen by the user. Also, don't send them all to offline users.
Diffstat (limited to 'protocols/msn/msn.c')
-rw-r--r--protocols/msn/msn.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/protocols/msn/msn.c b/protocols/msn/msn.c
index fe1d16ac..de8271e8 100644
--- a/protocols/msn/msn.c
+++ b/protocols/msn/msn.c
@@ -300,10 +300,14 @@ static void msn_rem_deny( struct im_connection *ic, char *who )
static int msn_send_typing( struct im_connection *ic, char *who, int typing )
{
- if( typing & OPT_TYPING )
+ struct bee_user *bu = bee_user_by_handle( ic->bee, ic, who );
+
+ if( !( bu->flags & BEE_USER_ONLINE ) )
+ return 0;
+ else if( typing & OPT_TYPING )
return( msn_buddy_msg( ic, who, TYPING_NOTIFICATION_MESSAGE, 0 ) );
else
- return( 1 );
+ return 1;
}
static char *set_eval_display_name( set_t *set, char *value )