Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2016-10-27 05:30:55 +0300
committerEion Robb <eion@robbmob.com>2016-10-27 05:30:55 +0300
commit32089582720f309802571f8879bcb17da1e9c62e (patch)
treed1c4fdcceddc0e1743d17218bd65067ff67b8a1d /skypeweb/skypeweb_util.c
parent3ef344c8df5db714dfe19bff9dca2d993f641b28 (diff)
Fix for messages and typing notifications for S4B accounts
Diffstat (limited to 'skypeweb/skypeweb_util.c')
-rw-r--r--skypeweb/skypeweb_util.c6
1 files changed, 3 insertions, 3 deletions
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 {