We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16fe7ce commit 4c3657cCopy full SHA for 4c3657c
android/app/src/main/kotlin/com/zulip/flutter/ZulipPlugin.kt
@@ -221,13 +221,13 @@ private class AndroidNotificationHost(val context: Context)
221
val style = NotificationCompat.MessagingStyle(toAndroidPerson(messagingStyle.user))
222
.setConversationTitle(messagingStyle.conversationTitle)
223
.setGroupConversation(messagingStyle.isGroupConversation)
224
- messagingStyle.messages.forEach { it.let {
+ messagingStyle.messages.forEach {
225
style.addMessage(NotificationCompat.MessagingStyle.Message(
226
it.text,
227
it.timestampMs,
228
toAndroidPerson(it.person),
229
))
230
- } }
+ }
231
setStyle(style)
232
}
233
number?.let { setNumber(it.toInt()) }
0 commit comments