Changeset cca0692 for protocols/twitter


Ignore:
Timestamp:
2010-04-09T00:40:38Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
16592d8
Parents:
7a90d02
Message:

Added imcb_chat_nick_hint() and use it in the Twitter module to get saner
channel names.

This also closes bug #577, making the Skype module a bit nicer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_lib.c

    r7a90d02 rcca0692  
    407407        if (!td->home_timeline_gc)
    408408        {   
     409                char *name_hint = g_strdup_printf( "Twitter_%s", ic->acc->user );
    409410                td->home_timeline_gc = gc = imcb_chat_new( ic, "home/timeline" );
     411                imcb_chat_name_hint( gc, name_hint );
     412                g_free( name_hint );
    410413                // Add the current user to the chat...
    411414                imcb_chat_add_buddy( gc, ic->acc->user );
Note: See TracChangeset for help on using the changeset viewer.