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>2020-08-24 12:13:12 +0300
committerEion Robb <eion@robbmob.com>2020-08-24 12:13:12 +0300
commita049f3e4b3dee68300860a6aa790f6b92c4d164f (patch)
treed0f31a81a49f5a0135e48a1edde8a385ab0107b6
parent6d6abba7446d6b7b0694af54ec5273463b77a468 (diff)
Use the alt-login by default, as it's way less breakable than the web login
-rw-r--r--skypeweb/libskypeweb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skypeweb/libskypeweb.c b/skypeweb/libskypeweb.c
index 35d9187..3ae43f1 100644
--- a/skypeweb/libskypeweb.c
+++ b/skypeweb/libskypeweb.c
@@ -763,7 +763,7 @@ skypeweb_protocol_init(PurpleProtocol *prpl_info)
prpl_info->options = OPT_PROTO_CHAT_TOPIC | OPT_PROTO_INVITE_MESSAGE /*| OPT_PROTO_IM_IMAGE*/;
typing_type1 = purple_account_option_bool_new(N_("Show 'Typing' status as system message in chat window."), "show-typing-as-text", FALSE);
typing_type2 = purple_account_option_bool_new(N_("Show 'Typing' status with 'Voice' icon near buddy name."), "show-typing-as-icon", FALSE);
- alt_login = purple_account_option_bool_new(N_("Use alternative login method"), "alt-login", FALSE);
+ alt_login = purple_account_option_bool_new(N_("Use alternative login method"), "alt-login", TRUE);
#if !PURPLE_VERSION_CHECK(3, 0, 0)
prpl_info->protocol_options = g_list_append(prpl_info->protocol_options, typing_type1);