mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-07 10:40:11 -05:00
Only include name with an address if it's non-empty.
This commit is contained in:
parent
f75c107311
commit
5fa757bba1
@ -203,7 +203,7 @@ public class Address
|
|||||||
@Override
|
@Override
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
if (mPersonal != null)
|
if (mPersonal != null && !mPersonal.equals(""))
|
||||||
{
|
{
|
||||||
return Utility.quoteAtoms(mPersonal) + " <" + mAddress + ">";
|
return Utility.quoteAtoms(mPersonal) + " <" + mAddress + ">";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user