Browse Source

Small change after PR review

pull/960/head
ganfra 1 year ago
parent
commit
506b473d4d
  1. 5
      libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/RustMatrixClient.kt

5
libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/RustMatrixClient.kt

@ -158,10 +158,7 @@ class RustMatrixClient constructor(
roomSummaryDataSource.awaitAllRoomsAreLoaded() roomSummaryDataSource.awaitAllRoomsAreLoaded()
cachedPairOfRoom = pairOfRoom(roomId) cachedPairOfRoom = pairOfRoom(roomId)
} }
return@withContext if (cachedPairOfRoom == null) { cachedPairOfRoom?.let { (roomListItem, fullRoom) ->
null
} else {
val (roomListItem, fullRoom) = cachedPairOfRoom
RustMatrixRoom( RustMatrixRoom(
sessionId = sessionId, sessionId = sessionId,
roomListItem = roomListItem, roomListItem = roomListItem,

Loading…
Cancel
Save