1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Change autoping timeout default to 20 seconds

This commit is contained in:
James Booth 2016-08-22 22:22:43 +01:00
parent ab1337af01
commit ea9216f054

View File

@ -547,7 +547,7 @@ gint
prefs_get_autoping_timeout(void)
{
if (!g_key_file_has_key(prefs, PREF_GROUP_CONNECTION, "autoping.timeout", NULL)) {
return 10;
return 20;
} else {
return g_key_file_get_integer(prefs, PREF_GROUP_CONNECTION, "autoping.timeout", NULL);
}