Changeset fd45e1d1 for irc_im.c


Ignore:
Timestamp:
2010-05-08T14:12:32Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
4a9fd5f
Parents:
b0364dc
Message:

Always show normal contacts in &bitlbee, not just the first channel in the
list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_im.c

    rb0364dc rfd45e1d1  
    8181        irc_t *irc = bee->ui_data;
    8282        irc_user_t *iu = bu->ui_data;
    83         irc_channel_t *ic = irc->channels->data; /* For now, just pick the first channel. */
     83        irc_channel_t *ic = irc->default_channel;
    8484       
    8585        /* Do this outside the if below since away state can change without
     
    119119{
    120120        irc_t *irc = bee->ui_data;
    121         irc_channel_t *ic = irc->channels->data;
     121        irc_channel_t *ic = irc->default_channel;
    122122        irc_user_t *iu = (irc_user_t *) bu->ui_data;
    123123        char *dst, *prefix = NULL;
     
    410410static gboolean bee_irc_channel_chat_topic( irc_channel_t *ic, const char *new )
    411411{
     412        return TRUE;
    412413}
    413414
Note: See TracChangeset for help on using the changeset viewer.