Disable three dot menu for kicked groups too (#993)

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

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

Loading…
Cancel
Save