Changeset 991c75f for protocols/twitter/twitter.c
- Timestamp:
- 2016-04-16T17:21:33Z (9 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter.c
rc9603a3 r991c75f 345 345 imcb_log(ic, "Getting contact list"); 346 346 twitter_get_friends_ids(ic, -1); 347 twitter_get_mutes_ids(ic, -1); 348 twitter_get_noretweets_ids(ic, -1); 347 349 } else { 348 350 twitter_main_loop_start(ic); … … 955 957 } else if (g_strcasecmp(cmd[0], "unfollow") == 0 && cmd[1]) { 956 958 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); 957 965 goto eof; 958 966 } else if ((g_strcasecmp(cmd[0], "report") == 0 ||
Note: See TracChangeset
for help on using the changeset viewer.