Changeset d24b73f for skype


Ignore:
Timestamp:
2008-04-04T14:19:46Z (16 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
bd417a1
Parents:
4834307
Message:

skype_read_callback(): handle SKYPEOUT nicks as offline as well

  • you can chat with them and you can stil call them without spamming the

user list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r4834307 rd24b73f  
    323323                                        ptr = g_strdup_printf("%s@skype.com", user);
    324324                                        imcb_add_buddy(ic, ptr, NULL);
    325                                         if(strcmp(status, "OFFLINE") != 0)
     325                                        if(strcmp(status, "OFFLINE") != 0 && strcmp(status, "SKYPEOUT") != 0)
    326326                                                flags |= OPT_LOGGED_IN;
    327327                                        if(strcmp(status, "ONLINE") != 0 && strcmp(status, "SKYPEME") != 0)
Note: See TracChangeset for help on using the changeset viewer.