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

Commit eb7fea6f authored by first last's avatar first last
Browse files

Fix NPE in SystemUI

Fixed a system UI crash when clicking a notification to launch a PendingIntent with a user-created IIntentSender.

Change-Id: I4f55a12e8cc85f2d8b79e7076bc3f543280b5678
parent 5e04e9a1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ class StatusBarNotificationActivityStarterLogger @Inject constructor(
    fun logSendPendingIntent(entry: NotificationEntry, pendingIntent: PendingIntent, result: Int) {
        buffer.log(TAG, INFO, {
            str1 = entry.logKey
            str2 = pendingIntent.intent.toString()
            str2 = pendingIntent.intent?.toString()
            int1 = result
        }, {
            "(5/5) Started intent $str2 for notification $str1 with result code $int1"
@@ -120,7 +120,7 @@ class StatusBarNotificationActivityStarterLogger @Inject constructor(
    fun logSendingFullScreenIntent(entry: NotificationEntry, pendingIntent: PendingIntent) {
        buffer.log(TAG, INFO, {
            str1 = entry.logKey
            str2 = pendingIntent.intent.toString()
            str2 = pendingIntent.intent?.toString()
        }, {
            "Notification $str1 has fullScreenIntent; sending fullScreenIntent $str2"
        })