fix RecentlyNonNull/Nullable warnings

This commit is contained in:
Conny Duck 2018-09-22 21:11:18 +02:00
commit a2eb41900f
3 changed files with 5 additions and 5 deletions

View file

@ -139,7 +139,7 @@ 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, "")
}
}