2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-28 20:57:42 +00:00

Changes in Contacts Helper

Modify the contact helper in oder to split contact name and
contact number. Those values are sent separately
This commit is contained in:
Joao Carreira 2015-10-04 21:03:10 +01:00 committed by Albert Vaca
parent 61ded9469c
commit d59750441f

View File

@ -54,7 +54,7 @@ public class ContactsHelper {
String name = cursor.getString(nameIndex);
//Log.e("PhoneNumberLookup", "success: " + name);
cursor.close();
return name + " (" + number + ")";
return name;
}
}