SES-2916 - Remove group config when blocked (#852)

pull/1710/head
SessionHero01 4 months ago committed by GitHub
parent 71b30d8eb8
commit b700be6e73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -346,10 +346,10 @@ class ConversationViewModel(
val recipient = invitingAdmin ?: recipient ?: return Log.w("Loki", "Recipient was null for block action")
if (recipient.isContactRecipient || recipient.isGroupV2Recipient) {
repository.setBlocked(threadId, recipient, true)
}
if (recipient.isGroupV2Recipient) {
groupManagerV2.onBlocked(AccountId(recipient.address.serialize()))
}
if (this.recipient?.isGroupV2Recipient == true) {
groupManagerV2.onBlocked(AccountId(this.recipient!!.address.serialize()))
}
}

@ -47,7 +47,6 @@ import org.session.libsession.utilities.SSKEnvironment
import org.session.libsession.utilities.getGroup
import org.session.libsession.utilities.recipients.Recipient
import org.session.libsession.utilities.waitUntilGroupConfigsPushed
import org.session.libsignal.messages.SignalServiceGroup
import org.session.libsignal.protos.SignalServiceProtos.DataMessage
import org.session.libsignal.protos.SignalServiceProtos.DataMessage.GroupUpdateDeleteMemberContentMessage
import org.session.libsignal.protos.SignalServiceProtos.DataMessage.GroupUpdateInfoChangeMessage
@ -1085,9 +1084,12 @@ class GroupManagerV2Impl @Inject constructor(
}
}
override fun onBlocked(accountId: AccountId) {
GlobalScope.launch {
respondToInvitation(accountId, false)
override fun onBlocked(groupAccountId: AccountId) {
GlobalScope.launch(dispatcher) {
respondToInvitation(groupAccountId, false)
// Remove this group from config regardless
configFactory.removeGroup(groupAccountId)
}
}

@ -103,5 +103,8 @@ interface GroupManagerV2 {
fun setExpirationTimer(groupId: AccountId, mode: ExpiryMode, expiryChangeTimestampMs: Long)
fun onBlocked(accountId: AccountId)
/**
* Should be called whenever a group invite is blocked
*/
fun onBlocked(groupAccountId: AccountId)
}
Loading…
Cancel
Save