Make sure we don't set our own profile pic from group messages (#981)

pull/1710/head
SessionHero01 1 month ago committed by GitHub
parent 0e62a2f301
commit 652bc64cb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -634,7 +634,7 @@ private fun MessageReceiver.handleGroupUpdated(message: GroupUpdated, closedGrou
}
// Update profile if needed
if (message.profile != null) {
if (message.profile != null && !message.isSenderSelf) {
val profile = message.profile
val recipient = Recipient.from(MessagingModuleConfiguration.shared.context, Address.fromSerialized(message.sender!!), false)
val profileManager = SSKEnvironment.shared.profileManager

Loading…
Cancel
Save