mirror of https://github.com/zlatinb/muwire
fix a typo that was causing update checks after every startup
parent
8ffa81d223
commit
ee68ce42c9
|
@ -102,7 +102,7 @@ class MuWireSettings {
|
|||
downloadRetryInterval = Integer.parseInt(props.getProperty("downloadRetryInterval","60"))
|
||||
downloadMaxFailures = Integer.parseInt(props.getProperty("downloadMaxFailures","10"))
|
||||
updateCheckInterval = Integer.parseInt(props.getProperty("updateCheckInterval","24"))
|
||||
lastUpdateCheck = Long.parseLong(props.getProperty("lastUpdateChec","0"))
|
||||
lastUpdateCheck = Long.parseLong(props.getProperty("lastUpdateCheck","0"))
|
||||
autoDownloadUpdate = Boolean.parseBoolean(props.getProperty("autoDownloadUpdate","true"))
|
||||
updateType = props.getProperty("updateType","jar")
|
||||
shareDownloadedFiles = Boolean.parseBoolean(props.getProperty("shareDownloadedFiles","true"))
|
||||
|
|
Loading…
Reference in New Issue