mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 00:03: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)
|
logger.WithError(err).Warnf("Failed to unmarshal auth event %q", missingAuthEventID)
|
||||||
continue withNextServer
|
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)
|
return fmt.Errorf("recursive t.processEvent: %w", err)
|
||||||
}
|
}
|
||||||
delete(missingAuthEvents, missingAuthEventID)
|
delete(missingAuthEvents, missingAuthEventID)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue