Only include name with an address if it's non-empty.
This commit is contained in:
parent
f75c107311
commit
5fa757bba1
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ public class Address
|
|||
@Override
|
||||
public String toString()
|
||||
{
|
||||
if (mPersonal != null)
|
||||
if (mPersonal != null && !mPersonal.equals(""))
|
||||
{
|
||||
return Utility.quoteAtoms(mPersonal) + " <" + mAddress + ">";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue