Ignore:
Timestamp:
2016-04-16T17:21:33Z (8 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
a244877
Parents:
c9603a3 (diff), 166a571 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'bitlbee/pr/70'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter.c

    rc9603a3 r991c75f  
    345345                imcb_log(ic, "Getting contact list");
    346346                twitter_get_friends_ids(ic, -1);
     347                twitter_get_mutes_ids(ic, -1);
     348                twitter_get_noretweets_ids(ic, -1);
    347349        } else {
    348350                twitter_main_loop_start(ic);
     
    955957        } else if (g_strcasecmp(cmd[0], "unfollow") == 0 && cmd[1]) {
    956958                twitter_remove_buddy(ic, cmd[1], NULL);
     959                goto eof;
     960        } else if (g_strcasecmp(cmd[0], "mute") == 0 && cmd[1]) {
     961                twitter_mute_create_destroy(ic, cmd[1], 1);
     962                goto eof;
     963        } else if (g_strcasecmp(cmd[0], "unmute") == 0 && cmd[1]) {
     964                twitter_mute_create_destroy(ic, cmd[1], 0);
    957965                goto eof;
    958966        } else if ((g_strcasecmp(cmd[0], "report") == 0 ||
Note: See TracChangeset for help on using the changeset viewer.