mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
fix: only show notification settings if the contact is not muted and a group
This commit is contained in:
parent
ea71334524
commit
1f3db80d36
1 changed files with 3 additions and 0 deletions
|
@ -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…
Reference in a new issue