Fix for when a stored contact's name field is empty.

Display # instead of + in the avatar.

Closes #3141
// FREEBIE
fork-5.53.8
Moxie Marlinspike 2015-05-11 01:18:11 -07:00 zatwierdzone przez Jake McGinty
rodzic 40ca2575da
commit 833fcd10ab
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -62,7 +62,7 @@ public class ContactPhotoFactory {
.height(targetSize)
.endConfig()
.buildRound(String.valueOf(name.charAt(0)),
COLOR_GENERATOR.getColor(name));
COLOR_GENERATOR.getColor(name));
}
synchronized (defaultPhotoLock) {

Wyświetl plik

@ -133,9 +133,10 @@ public class RecipientProvider {
try {
if (cursor != null && cursor.moveToFirst()) {
Uri contactUri = Contacts.getLookupUri(cursor.getLong(2), cursor.getString(1));
String name = cursor.getString(3).equals(cursor.getString(0)) ? null : cursor.getString(0);
Drawable contactPhoto = ContactPhotoFactory.getContactPhoto(context,
Uri.withAppendedPath(Contacts.CONTENT_URI, cursor.getLong(2)+""),
cursor.getString(0));
Uri.withAppendedPath(Contacts.CONTENT_URI, cursor.getLong(2) + ""),
name);
return new RecipientDetails(cursor.getString(0), cursor.getString(3), contactUri, contactPhoto);
}
} finally {