Fixed LIME update threshold

This commit is contained in:
Sylvain Berfini 2023-03-22 11:49:53 +01:00
parent 360f30df4b
commit 36047921b8
2 changed files with 3 additions and 4 deletions

View file

@ -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

View file

@ -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")
}