mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 11:03:39 +00:00
Don't redact, instead just silently drop
This commit is contained in:
parent
d6cb8cc242
commit
f9151302aa
1 changed files with 2 additions and 3 deletions
|
@ -235,14 +235,13 @@ func (t *txnReq) processTransaction(ctx context.Context) (*gomatrixserverlib.Res
|
|||
continue
|
||||
}
|
||||
if err = gomatrixserverlib.VerifyAllEventSignatures(ctx, []*gomatrixserverlib.Event{event}, t.keys); err != nil {
|
||||
event = event.Redact()
|
||||
util.GetLogger(ctx).WithError(err).Warnf("Transaction: Couldn't validate signature of event %q", event.EventID())
|
||||
/*
|
||||
util.GetLogger(ctx).WithError(err).Warnf("Transaction: Couldn't validate signature of event %q", event.EventID())
|
||||
results[event.EventID()] = gomatrixserverlib.PDUResult{
|
||||
Error: err.Error(),
|
||||
}
|
||||
continue
|
||||
*/
|
||||
continue
|
||||
}
|
||||
pdus = append(pdus, event.Redact().Headered(verRes.RoomVersion))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue