Hide 'Add to Contacts' option for the Note to Self chat.
This commit is contained in:
parent
66886dfd7b
commit
3336d92cb1
1 changed files with 1 additions and 1 deletions
|
@ -1009,7 +1009,7 @@ public class ConversationParentFragment extends Fragment
|
|||
if (recipient != null && recipient.get().isMuted()) inflater.inflate(R.menu.conversation_muted, menu);
|
||||
else inflater.inflate(R.menu.conversation_unmuted, menu);
|
||||
|
||||
if (isSingleConversation() && getRecipient().getContactUri() == null && !recipient.get().isReleaseNotes()) {
|
||||
if (isSingleConversation() && getRecipient().getContactUri() == null && !recipient.get().isReleaseNotes() && !recipient.get().isSelf()) {
|
||||
inflater.inflate(R.menu.conversation_add_to_contacts, menu);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue