Update user config whenever group name changes (#956)

pull/1710/head
SessionHero01 2 months ago committed by GitHub
parent a5ad390cdd
commit 657e3e2b59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -191,6 +191,13 @@ class ConfigToDatabaseSync @Inject constructor(
recipientDatabase.setProfileName(recipient, groupInfoConfig.name)
profileManager.setName(context, recipient, groupInfoConfig.name.orEmpty())
// Also update the name in the user groups config
configFactory.withMutableUserConfigs { configs ->
configs.userGroups.getClosedGroup(groupInfoConfig.id.hexString)?.let { group ->
configs.userGroups.set(group.copy(name = groupInfoConfig.name.orEmpty()))
}
}
if (groupInfoConfig.destroyed) {
handleDestroyedGroup(threadId = threadId)
} else {

Loading…
Cancel
Save