Remove three dot menu for kicked group (#984)

pull/1710/head
SessionHero01 1 month ago committed by GitHub
parent 13c638f00d
commit d7f697572e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -201,13 +201,11 @@ class ConversationViewModel(
} }
val showOptionsMenu: Boolean val showOptionsMenu: Boolean
get() { get() = !isMessageRequestThread && !isDeprecatedLegacyGroup && !isKickedGroupV2Thread
if (isMessageRequestThread) {
return false
}
return !isDeprecatedLegacyGroup private val isKickedGroupV2Thread: Boolean
} get() = recipient?.isGroupV2Recipient == true &&
configFactory.getGroup(AccountId(recipient!!.address.toString()))?.kicked == true
private val isDeprecatedLegacyGroup: Boolean private val isDeprecatedLegacyGroup: Boolean
get() = recipient?.isLegacyGroupRecipient == true && legacyGroupDeprecationManager.isDeprecated get() = recipient?.isLegacyGroupRecipient == true && legacyGroupDeprecationManager.isDeprecated

Loading…
Cancel
Save