Skip to content
Snippets Groups Projects
Commit b282d4d6 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix NPE in SystemUI" into main am: 548ee385 am: 284f4ffb

parents c688780d 284f4ffb
No related branches found
No related tags found
No related merge requests found
......@@ -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"
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment