Increase the thread summaries limit

This commit is contained in:
ariskotsomitopoulos 2022-03-22 11:20:47 +02:00
parent ed2cb5f0fe
commit a431d885f0
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ internal interface FetchThreadSummariesTask : Task<FetchThreadSummariesTask.Para
data class Params(
val roomId: String,
val from: String = "",
val limit: Int = 100,
val limit: Int = 500,
val isUserParticipating: Boolean = true
)
}