Ignore:
Timestamp:
2013-03-17T13:03:25Z (11 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
0075527, e31e5b8
Parents:
ed3ff43 (diff), 215e171 (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 from vmiklos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/skype.c

    red3ff43 r9b2a8c1  
    10151015                        sd->adder = NULL;
    10161016                }
    1017         } else if (!strncmp(info, "MEMBERS ", 8)) {
     1017        } else if (!strncmp(info, "MEMBERS ", 8) || !strncmp(info, "ACTIVEMEMBERS ", 14) ) {
    10181018                info += 8;
    10191019                gc = bee_chat_by_title(ic->bee, ic, id);
     
    12201220
    12211221        /* Auto join to bookmarked chats if requested.*/
    1222         if (set_getbool(&ic->acc->set, "auto_join"))
     1222        if (set_getbool(&ic->acc->set, "auto_join")) {
    12231223                skype_printf(ic, "SEARCH BOOKMARKEDCHATS\n");
     1224                skype_printf(ic, "SEARCH ACTIVECHATS\n");
     1225                skype_printf(ic, "SEARCH MISSEDCHATS\n");
     1226                skype_printf(ic, "SEARCH RECENTCHATS\n");
     1227        }
    12241228        return st;
    12251229}
Note: See TracChangeset for help on using the changeset viewer.