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.
This commit is contained in:
woogerboy21 2016-11-02 01:26:00 -04:00 committed by Zach H
parent a2f4fa916e
commit 1cebe030f6

View file

@ -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/");