mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-31 07:10:14 -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
|
||||
public String toString()
|
||||
{
|
||||
if (mPersonal != null)
|
||||
if (mPersonal != null && !mPersonal.equals(""))
|
||||
{
|
||||
return Utility.quoteAtoms(mPersonal) + " <" + mAddress + ">";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user