Ignore:
Timestamp:
2011-03-28T23:28:46Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
4f50ea5
Parents:
f01bc6f
Message:

For #721, add the numbers in front of tweets if show_ids is enabled. Left
to do: Document the feature and allow using the numbers in rt/replies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter.c

    rf01bc6f rce81acd  
    245245        s->flags |= ACC_SET_OFFLINE_ONLY;
    246246       
     247        s = set_add( &acc->set, "show_ids", "false", set_eval_bool, acc );
     248        s->flags |= ACC_SET_OFFLINE_ONLY;
     249       
    247250        s = set_add( &acc->set, "oauth", def_oauth, set_eval_bool, acc );
    248251}
     
    291294        imcb_buddy_status( ic, name, OPT_LOGGED_IN, NULL, NULL );
    292295       
     296        if( set_getbool( &acc->set, "show_ids" ) )
     297                td->log = g_new0( struct twitter_log_data, TWITTER_LOG_LENGTH );
     298       
    293299        imcb_log( ic, "Connecting" );
    294300       
     
    319325                g_free( td->url_path );
    320326                g_free( td->pass );
     327                g_free( td->log );
    321328                g_free( td );
    322329        }
Note: See TracChangeset for help on using the changeset viewer.