Makes MatrixClient Closeable outside of logout function.

This commit is contained in:
ganfra 2023-03-30 20:52:32 +02:00
parent 3a8ff32f0e
commit cfefe89b3e
3 changed files with 7 additions and 4 deletions

View file

@ -60,6 +60,8 @@ class FakeMatrixClient(
logoutFailure?.let { throw it }
}
override fun close() = Unit
override suspend fun loadUserDisplayName(): Result<String> {
return userDisplayName
}