Ignore:
Timestamp:
2010-08-21T22:25:37Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c00dd71
Parents:
a758ec1
Message:

Pass "user is mobile" info coming from OSCAR up to BitlBee and show mobile
people as away=Mobile. Bug #462 (and others for other protocols).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee_user.c

    ra758ec1 r0ebf919  
    190190        bu->status_msg = g_strdup( message );
    191191       
     192        if( bu->status == NULL && ( flags & OPT_MOBILE ) &&
     193            set_getbool( &bee->set, "mobile_is_away" ) )
     194        {
     195                bu->flags |= BEE_USER_AWAY;
     196                bu->status = g_strdup( "Mobile" );
     197        }
     198       
    192199        if( bee->ui->user_status )
    193200                bee->ui->user_status( bee, bu, old );
Note: See TracChangeset for help on using the changeset viewer.