Relying on the home config sync

fix/username-saved
ThomasSession 8 months ago
parent 96dded096f
commit 514c19e33f

@ -355,12 +355,9 @@ class HomeActivity : PassphraseRequiredActionBarActivity(),
updateLegacyConfigView()
// TODO: remove this after enough updates that we can rely on ConfigBase.isNewConfigEnabled to always return true
// This will only run if we aren't using new configs, as they are schedule to sync when there are changes applied
if (textSecurePreferences.getConfigurationMessageSynced()) {
lifecycleScope.launch(Dispatchers.IO) {
ConfigurationMessageUtilities.syncConfigurationIfNeeded(this@HomeActivity)
}
// Sync config changes if there are any
lifecycleScope.launch(Dispatchers.IO) {
ConfigurationMessageUtilities.syncConfigurationIfNeeded(this@HomeActivity)
}
}

@ -45,7 +45,6 @@ class CreateAccountManager @Inject constructor(
configFactory.keyPairChanged()
configFactory.user?.setName(displayName)
ConfigurationMessageUtilities.forceSyncConfigurationNowIfNeeded(application)
versionDataFetcher.startTimedVersionCheck()
}

Loading…
Cancel
Save