Private
Public Access
1
0

ChatRepository: Bump up sync limit a bit

This commit is contained in:
2024-03-19 00:55:43 -07:00
parent 09294e7da9
commit 66c2752096
2 changed files with 3 additions and 3 deletions

View File

@@ -92,6 +92,6 @@ class MessageListViewModel @Inject constructor(
}
fun synchronize() = viewModelScope.launch {
repository.synchronizeConversation(conversation!!)
repository.synchronizeConversation(conversation!!, limit = 100)
}
}