aboutsummaryrefslogtreecommitdiff
path: root/interface
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2020-03-20 14:32:29 +0200
committerTulir Asokan <tulir@maunium.net>2020-03-20 14:32:30 +0200
commit87b394abecc54b136487d0086c3e62dac6a2acf2 (patch)
treeae12fe3466f5f56f687b750b97721862a457a80a /interface
parent5a2c74514dd672343fbd012ab864518b9ee12957 (diff)
Support formatting in rainbows
Fixes #119
Diffstat (limited to 'interface')
-rw-r--r--interface/matrix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/matrix.go b/interface/matrix.go
index 6814f07..d4351d7 100644
--- a/interface/matrix.go
+++ b/interface/matrix.go
@@ -40,7 +40,7 @@ type MatrixContainer interface {
Logout()
SendPreferencesToMatrix()
- PrepareMarkdownMessage(roomID string, msgtype mautrix.MessageType, message string, relation *Relation) *event.Event
+ PrepareMarkdownMessage(roomID string, msgtype mautrix.MessageType, text, html string, relation *Relation) *event.Event
SendEvent(evt *event.Event) (string, error)
Redact(roomID, eventID, reason string) error
SendTyping(roomID string, typing bool)