am 86ada729
: Check for null data before writing contact rows to server
Merge commit '86ada729c2930c278c4f73a6bcea059c8ac74559' into eclair-plus-aosp * commit '86ada729c2930c278c4f73a6bcea059c8ac74559': Check for null data before writing contact rows to server
This commit is contained in:
commit
013b84dab8
@ -1556,6 +1556,7 @@ public class ContactsSyncAdapter extends AbstractSyncAdapter {
|
||||
|
||||
private void sendPhone(Serializer s, ContentValues cv) throws IOException {
|
||||
String value = cv.getAsString(Phone.NUMBER);
|
||||
if (value == null) return;
|
||||
switch (cv.getAsInteger(Phone.TYPE)) {
|
||||
case TYPE_WORK2:
|
||||
s.data(Tags.CONTACTS_BUSINESS2_TELEPHONE_NUMBER, value);
|
||||
@ -1600,6 +1601,7 @@ public class ContactsSyncAdapter extends AbstractSyncAdapter {
|
||||
|
||||
private void sendRelation(Serializer s, ContentValues cv) throws IOException {
|
||||
String value = cv.getAsString(Relation.DATA);
|
||||
if (value == null) return;
|
||||
switch (cv.getAsInteger(Relation.TYPE)) {
|
||||
case Relation.TYPE_ASSISTANT:
|
||||
s.data(Tags.CONTACTS_ASSISTANT_NAME, value);
|
||||
|
Loading…
Reference in New Issue
Block a user