From 474faccf510cc95818a6f2a9b26f7132cc3ae565 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Mon, 12 Oct 2020 16:15:28 +0100 Subject: [PATCH] Fix processEvent call --- federationapi/routing/send.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federationapi/routing/send.go b/federationapi/routing/send.go index cf893d0f3..fff18a5a9 100644 --- a/federationapi/routing/send.go +++ b/federationapi/routing/send.go @@ -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)