Fixed LIME update threshold
This commit is contained in:
parent
360f30df4b
commit
36047921b8
2 changed files with 3 additions and 4 deletions
|
@ -49,6 +49,6 @@ xmlrpc_url=https://subscribe.linphone.org:444/wizard.php
|
|||
backend=0
|
||||
|
||||
[lime]
|
||||
lime_update_threshold=-1
|
||||
lime_update_threshold=86400
|
||||
|
||||
## End of factory rc
|
||||
|
|
|
@ -445,9 +445,7 @@ class CoreContext(
|
|||
|
||||
computeUserAgent()
|
||||
|
||||
val fiveOneMigrationRequired = core.config.getBool("app", "migration_5.1", true)
|
||||
core.config.setBool("app", "migration_5.1", false)
|
||||
|
||||
val fiveOneMigrationRequired = core.config.getBool("app", "migration_5.1_required", true)
|
||||
for (account in core.accountList) {
|
||||
if (account.params.identityAddress?.domain == corePreferences.defaultDomain) {
|
||||
var paramsChanged = false
|
||||
|
@ -523,6 +521,7 @@ class CoreContext(
|
|||
}
|
||||
}
|
||||
}
|
||||
core.config.setBool("app", "migration_5.1_required", false)
|
||||
|
||||
Log.i("[Context] Core configured")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue