aboutsummaryrefslogtreecommitdiff
path: root/matrix/matrix.go
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/matrix.go')
-rw-r--r--matrix/matrix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/matrix/matrix.go b/matrix/matrix.go
index 6985659..f19fa24 100644
--- a/matrix/matrix.go
+++ b/matrix/matrix.go
@@ -281,7 +281,7 @@ func (c *Container) SendPreferencesToMatrix() {
// HandleMessage is the event handler for the m.room.message timeline event.
func (c *Container) HandleMessage(source EventSource, evt *mautrix.Event) {
- if source&EventSourceLeave != 0 {
+ if source&EventSourceLeave != 0 || source&EventSourceState != 0 {
return
}
mainView := c.ui.MainView()