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-02-18 09:56:16 +0300
committerEion Robb <eion@robbmob.com>2016-02-18 09:56:16 +0300
commit35921278918aad29341d9138bebc965ce058aba6 (patch)
tree126e7cc8322b54e1be91f51882c80bec42476499
parent160a593771cbde68558d822a03b07985d9cd45f1 (diff)
Make the 'failed getting registration token' non-fatal
Just a workaround until I can sort this out properly, this should allow the UI to reconnect automatically
-rw-r--r--skypeweb/skypeweb_messages.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skypeweb/skypeweb_messages.c b/skypeweb/skypeweb_messages.c
index 8568536..34058f6 100644
--- a/skypeweb/skypeweb_messages.c
+++ b/skypeweb/skypeweb_messages.c
@@ -1053,7 +1053,7 @@ skypeweb_got_registration_token(PurpleUtilFetchUrlData *url_data, gpointer user_
if (registration_token == NULL) {
purple_connection_error (sa->pc,
- PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED,
+ PURPLE_CONNECTION_ERROR_NETWORK_ERROR,
_("Failed getting Registration Token"));
return;
}
@@ -1420,4 +1420,4 @@ skypeweb_get_thread_url(SkypeWebAccount *sa, const gchar *thread)
//{"baseDomain":"https://join.skype.com/launch/","threadId":"%s"}
// {"Id":"MeMxigEAAAAxOTo5NDZkMjExMGQ4YmU0ZjQzODc3NjMxNDQ3ZTgxYWNmNkB0aHJlYWQuc2t5cGU","Blob":null,"JoinUrl":"https://join.skype.com/ALXsHZ2RFQnk","ThreadId":"19:946d2110d8be4f43877631447e81acf6@thread.skype"}
-} \ No newline at end of file
+}