Fix NullPointerException

This commit is contained in:
MM20 2022-10-29 13:11:42 +02:00
parent 5e2235cef7
commit 86df1852ed
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -106,7 +106,7 @@ class AppItemVM(
fun openNotification(notification: StatusBarNotification) {
try {
notification.notification.contentIntent.send()
notification.notification.contentIntent?.send()
} catch (e: PendingIntent.CanceledException) {}
}