fix: only show notification settings if the contact is not muted and a group

pull/709/head
Harris 4 years ago
parent ea71334524
commit 1f3db80d36

@ -92,6 +92,9 @@ object ConversationMenuHelper {
inflater.inflate(R.menu.menu_conversation_muted, menu)
} else {
inflater.inflate(R.menu.menu_conversation_unmuted, menu)
}
if (thread.isGroupRecipient && !thread.isMuted) {
inflater.inflate(R.menu.menu_conversation_notification_settings, menu)
}

Loading…
Cancel
Save