mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-06-29 18:45:58 +01:00
Fix crash when group story has more than 100 replies or reactions.
This commit is contained in:
committed by
Greyson Parrelli
parent
5f67c9363e
commit
cb2816362c
+2
-2
@@ -248,9 +248,9 @@ class StoryGroupReplyFragment :
|
||||
markReadHelper?.onViewsRevealed(adapterItem.replyBody.sentAtMillis)
|
||||
}
|
||||
|
||||
private fun getConfiguration(pageData: List<ReplyBody>): DSLConfiguration {
|
||||
private fun getConfiguration(pageData: List<ReplyBody?>): DSLConfiguration {
|
||||
return configure {
|
||||
pageData.forEach {
|
||||
pageData.filterNotNull().forEach {
|
||||
when (it) {
|
||||
is ReplyBody.Text -> {
|
||||
customPref(
|
||||
|
||||
Reference in New Issue
Block a user