From d24b73fdab7c4892c93e1f75a094b0f7ebaf97d3 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 4 Apr 2008 16:19:46 +0200 Subject: 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 --- skype/skype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skype/skype.c b/skype/skype.c index 7a677e86..497d1590 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -322,7 +322,7 @@ static gboolean skype_read_callback( gpointer data, gint fd, b_input_condition c { ptr = g_strdup_printf("%s@skype.com", user); imcb_add_buddy(ic, ptr, NULL); - if(strcmp(status, "OFFLINE") != 0) + if(strcmp(status, "OFFLINE") != 0 && strcmp(status, "SKYPEOUT") != 0) flags |= OPT_LOGGED_IN; if(strcmp(status, "ONLINE") != 0 && strcmp(status, "SKYPEME") != 0) flags |= OPT_AWAY; -- cgit v1.2.3