update AndroidX dependencies (#2641)

* update AndroidX dependencies

* fix ComposeActivityTest
This commit is contained in:
Konrad Pozniak 2022-08-07 19:13:59 +02:00 committed by GitHub
commit 68c9870b19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 10 deletions

View file

@ -126,6 +126,6 @@ class SendStatusBroadcastReceiver : BroadcastReceiver() {
private fun getReplyMessage(intent: Intent): CharSequence {
val remoteInput = RemoteInput.getResultsFromIntent(intent)
return remoteInput.getCharSequence(NotificationHelper.KEY_REPLY, "")
return remoteInput?.getCharSequence(NotificationHelper.KEY_REPLY, "") ?: ""
}
}