1
0
mirror of https://github.com/vector-im/riotX-android synced 2025-10-06 00:02:48 +02:00

adding trailing commas

This commit is contained in:
Adam Brown
2022-09-21 16:37:31 +01:00
parent d75e37966c
commit 600588dbbb
4 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ fun getMatrixInstance(): Matrix {
val context = InstrumentationRegistry.getInstrumentation().targetContext
val configuration = MatrixConfiguration(
roomDisplayNameFallbackProvider = VectorRoomDisplayNameFallbackProvider(context),
syncConfig = SyncConfig(longPollTimeout = 5_000L)
syncConfig = SyncConfig(longPollTimeout = 5_000L),
)
return Matrix(context, configuration)
}