From f75fc1c37cc20d91b5382a4185e02e27140575a8 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Wed, 10 Jun 2020 16:34:24 +0100 Subject: [PATCH] Set the signing struct --- federationsender/queue/queue.go | 1 + 1 file changed, 1 insertion(+) diff --git a/federationsender/queue/queue.go b/federationsender/queue/queue.go index 7d2fcc9b0..5b8fc3c56 100644 --- a/federationsender/queue/queue.go +++ b/federationsender/queue/queue.go @@ -85,6 +85,7 @@ func (oqs *OutgoingQueues) getQueue(destination gomatrixserverlib.ServerName) *d incomingEDUs: make(chan *gomatrixserverlib.EDU, 128), incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128), retryServerCh: make(chan bool), + signing: oqs.signing, } oqs.queues[destination] = oq }