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

Commit 5363af35 authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Merge "Fix NPE in MissedCallNotifierImpl" am: 6fc722d7

am: 44733272

Change-Id: I236d091c04e3ca82a6b24fae3d37092ef118e41f
parents bb52d0b3 44733272
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -589,8 +589,10 @@ public class MissedCallNotifierImpl extends CallsManagerListenerBase implements
                                                                "different handle.");
                                                return;
                                            }
                                            if (info.contactDisplayPhotoUri == null) {
                                                // If there is no photo, just show the notification.
                                            if (info == null ||
                                                    info.contactDisplayPhotoUri == null) {
                                                // If there is no photo or if the caller info is
                                                // null, just show the notification.
                                                CallInfo callInfo = callInfoFactory.makeCallInfo(
                                                        info, null, handle, date);
                                                showMissedCallNotification(callInfo, userHandle);