Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
javiergm1983 committed Apr 2, 2019
1 parent ea5eb8e commit 161b03a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ public String getNonContactFullName(long userHandle){
}
else {
String email = nonContact.getEmail();
if (email != null && email.trim().isEmpty()) {
if (email != null && !email.trim().isEmpty()) {
return email;
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2425,6 +2425,6 @@
<string name="new_chat_link_label" context="Label that indicates the creation of a chat link">New chat link</string>
<string name="enter_group_name" context="Title of the dialog shown when the user it is creating a chat link and the chat has not title">Enter group name</string>
<string name="alert_enter_group_name" context="Alert shown when the user it is creating a chat link and the chat has not title">To create a chat link you must name the group.</string>
<string name="invite_contacts_to_start_chat" context="Text shown when an account doesn't have any contact added and it's trying to star a new chat conversation">Invite contacts and start chatting securely with MEGA\'s encrypted chat.</string>
<string name="invite_contacts_to_start_chat" context="Text shown when an account doesn't have any contact added and it's trying to start a new chat conversation">Invite contacts and start chatting securely with MEGA\'s encrypted chat.</string>

</resources>

0 comments on commit 161b03a

Please sign in to comment.