about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-08-22 22:22:43 +0100
committerJames Booth <boothj5@gmail.com>2016-08-22 22:22:43 +0100
commitea9216f05484e7935f7d1772c2788f44fdf52eb7 (patch)
tree3a39612e4e6d0a72992aa242fb10b3d93fa50ee6
parentab1337af0152acd34cfc4e6f72b5cb6df0ac4834 (diff)
downloadprofani-tty-ea9216f05484e7935f7d1772c2788f44fdf52eb7.tar.gz
Change autoping timeout default to 20 seconds
-rw-r--r--src/config/preferences.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/preferences.c b/src/config/preferences.c
index bb9693fe..2cd5e304 100644
--- a/src/config/preferences.c
+++ b/src/config/preferences.c
@@ -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);
     }