From 32089582720f309802571f8879bcb17da1e9c62e Mon Sep 17 00:00:00 2001 From: Eion Robb Date: Thu, 27 Oct 2016 15:30:55 +1300 Subject: Fix for messages and typing notifications for S4B accounts --- skypeweb/skypeweb_util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'skypeweb/skypeweb_util.c') diff --git a/skypeweb/skypeweb_util.c b/skypeweb/skypeweb_util.c index c4c16fa..eb94208 100644 --- a/skypeweb/skypeweb_util.c +++ b/skypeweb/skypeweb_util.c @@ -394,10 +394,10 @@ skypeweb_url_prevent_follow_redirects(PurpleUtilFetchUrlData *requestdata) const gchar * skypeweb_user_url_prefix(const gchar *who) { - if (SKYPEWEB_BUDDY_IS_MSN(who)) { - return "1:"; - } else if(SKYPEWEB_BUDDY_IS_S4B(who)) { + if(SKYPEWEB_BUDDY_IS_S4B(who)) { return ""; // already has the 2: prefix! + } else if (SKYPEWEB_BUDDY_IS_MSN(who)) { + return "1:"; } else if(SKYPEWEB_BUDDY_IS_PHONE(who)) { return "4:"; } else { -- cgit v1.2.3