|
|
@ -197,6 +197,7 @@ public class EntityContact implements Serializable {
|
|
|
|
if (contact == null) {
|
|
|
|
if (contact == null) {
|
|
|
|
contact = new EntityContact();
|
|
|
|
contact = new EntityContact();
|
|
|
|
contact.account = account;
|
|
|
|
contact.account = account;
|
|
|
|
|
|
|
|
if (type == TYPE_TO)
|
|
|
|
contact.identity = identity;
|
|
|
|
contact.identity = identity;
|
|
|
|
contact.type = type;
|
|
|
|
contact.type = type;
|
|
|
|
contact.email = email;
|
|
|
|
contact.email = email;
|
|
|
@ -209,6 +210,7 @@ public class EntityContact implements Serializable {
|
|
|
|
contact.id = db.contact().insertContact(contact);
|
|
|
|
contact.id = db.contact().insertContact(contact);
|
|
|
|
Log.i("Inserted contact=" + contact + " type=" + type);
|
|
|
|
Log.i("Inserted contact=" + contact + " type=" + type);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (type == TYPE_TO)
|
|
|
|
contact.identity = identity;
|
|
|
|
contact.identity = identity;
|
|
|
|
if (contact.name == null && name != null)
|
|
|
|
if (contact.name == null && name != null)
|
|
|
|
contact.name = name;
|
|
|
|
contact.name = name;
|
|
|
|