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

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

Use handle uri instead null if caller info lookup is not done

Bug: 17598245
Change-Id: Ib5acc62d212c85d4364b8ff98e469ca4780ebe36
parent eb09f6c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -826,7 +826,7 @@ final class Call implements CreateConnectionResponse {
     */
    Uri getContactUri() {
        if (mCallerInfo == null || !mCallerInfo.contactExists) {
            return null;
            return getHandle();
        }
        return Contacts.getLookupUri(mCallerInfo.contactIdOrZero, mCallerInfo.lookupKey);
    }