From 1cebe030f6016be6b804de75e8d9b5b6194c9967 Mon Sep 17 00:00:00 2001 From: woogerboy21 Date: Wed, 2 Nov 2016 01:26:00 -0400 Subject: [PATCH] Fix one to many zero's (#2260) Looks like I typo'd the default value for the number of seconds in 1 hour for the default client side idle time out. This fixes it. --- cockatrice/src/settingscache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/settingscache.cpp b/cockatrice/src/settingscache.cpp index 3cc34d8b..ebb46c62 100644 --- a/cockatrice/src/settingscache.cpp +++ b/cockatrice/src/settingscache.cpp @@ -162,7 +162,7 @@ SettingsCache::SettingsCache() notifyAboutUpdates = settings->value("personal/updatenotification", true).toBool(); lang = settings->value("personal/lang").toString(); keepalive = settings->value("personal/keepalive", 5).toInt(); - idlekeepalive = settings->value("personal/idlekeepalive", 36000).toInt(); + idlekeepalive = settings->value("personal/idlekeepalive", 3600).toInt(); deckPath = getSafeConfigPath("paths/decks", dataPath + "/decks/"); replaysPath = getSafeConfigPath("paths/replays", dataPath + "/replays/");