We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f94b12 commit e8a2b69Copy full SHA for e8a2b69
pkg/signaling/client.go
@@ -43,7 +43,8 @@ func (m *MatrixClient) RunSyncing(callback func(*event.Event)) {
43
44
syncer.ParseEventContent = true
45
syncer.OnEvent(func(_ mautrix.EventSource, evt *event.Event) {
46
- // We only care about to-device events.
+ // We only care about to-device events but also receive m.presence and
47
+ // m.push_rules events; we can simply ignore those.
48
if evt.Type.Class != event.ToDeviceEventType {
49
return
50
}
0 commit comments