diff options
-rw-r--r-- | bridge/matrix/matrix.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bridge/matrix/matrix.go b/bridge/matrix/matrix.go index acb20261..69d0264b 100644 --- a/bridge/matrix/matrix.go +++ b/bridge/matrix/matrix.go @@ -399,6 +399,11 @@ func (b *Bmatrix) handleEvent(ev *matrix.Event) { b.Log.Debugf("<= Sending message from %s on %s to gateway", ev.Sender, b.Account) b.Remote <- rmsg + + // not crucial, so no ratelimit check here + if err := b.mc.MarkRead(ev.RoomID, ev.ID); err != nil { + b.Log.Errorf("couldn't mark message as read %s", err.Error()) + } } } |