Extract fetchDetailsForEvent and use coroutineDispatchers.io

This commit is contained in:
ganfra 2023-06-12 20:23:58 +02:00
parent 2b0b7e3e4b
commit 26746f5e27
6 changed files with 26 additions and 21 deletions

View file

@ -82,4 +82,8 @@ class FakeMatrixTimeline(
override suspend fun replyMessage(inReplyToEventId: EventId, message: String): Result<Unit> {
return Result.success(Unit)
}
override suspend fun fetchDetailsForEvent(eventId: EventId): Result<Unit> {
return Result.success(Unit)
}
}