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
|
backend=0
|
||||||
|
|
||||||
[lime]
|
[lime]
|
||||||
lime_update_threshold=-1
|
lime_update_threshold=86400
|
||||||
|
|
||||||
## End of factory rc
|
## End of factory rc
|
||||||
|
|
|
@ -445,9 +445,7 @@ class CoreContext(
|
||||||
|
|
||||||
computeUserAgent()
|
computeUserAgent()
|
||||||
|
|
||||||
val fiveOneMigrationRequired = core.config.getBool("app", "migration_5.1", true)
|
val fiveOneMigrationRequired = core.config.getBool("app", "migration_5.1_required", true)
|
||||||
core.config.setBool("app", "migration_5.1", false)
|
|
||||||
|
|
||||||
for (account in core.accountList) {
|
for (account in core.accountList) {
|
||||||
if (account.params.identityAddress?.domain == corePreferences.defaultDomain) {
|
if (account.params.identityAddress?.domain == corePreferences.defaultDomain) {
|
||||||
var paramsChanged = false
|
var paramsChanged = false
|
||||||
|
@ -523,6 +521,7 @@ class CoreContext(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
core.config.setBool("app", "migration_5.1_required", false)
|
||||||
|
|
||||||
Log.i("[Context] Core configured")
|
Log.i("[Context] Core configured")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue