Changeset 9b1d2d6


Ignore:
Timestamp:
2010-08-22T10:42:27Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
ea728e6
Parents:
fd424c8
Message:

Ignore empty status messages, and msnmsgrp2p invitations.

Location:
protocols
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee_user.c

    rfd424c8 r9b1d2d6  
    223223        old = g_memdup( bu, sizeof( bee_user_t ) );
    224224       
    225         bu->status_msg = g_strdup( message );
     225        bu->status_msg = message && *message ? g_strdup( message ) : NULL;
    226226       
    227227        if( bee->ui->user_status )
  • protocols/msn/sb.c

    rfd424c8 r9b1d2d6  
    752752                else if( g_strncasecmp( ct, "application/x-msnmsgrp2p", 24 ) == 0 )
    753753                {
    754                         imcb_error( sb->ic, "Cannot receive file from %s: BitlBee does not "
    755                                         "support msnmsgrp2p yet.", sb->who );
     754                        /* Not currently implemented. Don't warn about it since
     755                           this seems to be used for avatars now. */
    756756                        g_free( ct );
    757757                }
Note: See TracChangeset for help on using the changeset viewer.