mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-22 19:51:39 +00:00
Don't store invites in sync API that aren't relevant to local users (#2439)
This commit is contained in:
parent
79da75d483
commit
a443d1e5f3
@ -347,9 +347,11 @@ func (s *OutputRoomEventConsumer) onNewInviteEvent(
|
|||||||
ctx context.Context, msg api.OutputNewInviteEvent,
|
ctx context.Context, msg api.OutputNewInviteEvent,
|
||||||
) {
|
) {
|
||||||
if msg.Event.StateKey() == nil {
|
if msg.Event.StateKey() == nil {
|
||||||
log.WithFields(log.Fields{
|
return
|
||||||
"event": string(msg.Event.JSON()),
|
}
|
||||||
}).Panicf("roomserver output log: invite has no state key")
|
if _, serverName, err := gomatrixserverlib.SplitID('@', *msg.Event.StateKey()); err != nil {
|
||||||
|
return
|
||||||
|
} else if serverName != s.cfg.Matrix.ServerName {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
pduPos, err := s.db.AddInviteEvent(ctx, msg.Event)
|
pduPos, err := s.db.AddInviteEvent(ctx, msg.Event)
|
||||||
|
Loading…
Reference in New Issue
Block a user