mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-24 07:13:09 -06:00
Fix processEvent call
This commit is contained in:
parent
404305724a
commit
474faccf51
|
|
@ -433,7 +433,7 @@ withNextEvent:
|
|||
logger.WithError(err).Warnf("Failed to unmarshal auth event %q", missingAuthEventID)
|
||||
continue withNextServer
|
||||
}
|
||||
if err = t.processEvent(ctx, ev, false); err != nil {
|
||||
if err = t.processEvent(ctx, ev); err != nil {
|
||||
return fmt.Errorf("recursive t.processEvent: %w", err)
|
||||
}
|
||||
delete(missingAuthEvents, missingAuthEventID)
|
||||
|
|
|
|||
Loading…
Reference in a new issue