Composer compiling and running

This commit is contained in:
Benoit Marty 2022-11-08 13:49:50 +01:00
parent 848f665509
commit 04d2e206ee
69 changed files with 6463 additions and 17 deletions

View file

@ -116,6 +116,8 @@ class MatrixTimeline(
}
suspend fun sendMessage(message: String): Result<Unit> {
val content = messageEventContentFromMarkdown(message)
room.send(content, null)
return Result.success(Unit)
}