2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 13:47:41 +00:00

Phone number shown next to contact name for calls/sms

BUG: 328197
This commit is contained in:
Albert Vaca
2014-01-10 17:59:50 +01:00
parent de9f78adf3
commit c85619dfd2

View File

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