Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be28ad8d authored by Yorke Lee's avatar Yorke Lee
Browse files

Fix for letter tile avatars not displaying properly in calllog DO NOT MERGE

Renable an accidentally disabled line of code which would retrieve
the lookup key from the lookup URI, allowing letter tile avatars
to display with the correct color and letter. 

Bug: 13341898
Change-Id: Ic65352053234e37f580aa44d9ed459755c3913f1
(cherry picked from commit a5804f5b)
parent 56e34715
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -642,11 +642,8 @@ public class CallLogAdapter extends GroupingListAdapter
            contactType = ContactPhotoManager.TYPE_BUSINESS;
        }

        String lookupKey = info.lookupKey;
        if (lookupUri != null) {
            //lookupKey = ContactInfoHelper.getLookupKeyFromUri(lookupUri);

        }
        String lookupKey = lookupUri == null ? null
                : ContactInfoHelper.getLookupKeyFromUri(lookupUri);

        String nameForDefaultImage = null;
        if (TextUtils.isEmpty(name)) {