This commit is contained in:
Kegan Dougal 2020-06-01 16:43:04 +01:00
parent 5d4f4e70c2
commit 40c89776c5

View file

@ -72,7 +72,7 @@ func (oqs *OutgoingQueues) getQueue(destination gomatrixserverlib.ServerName) *d
incomingPDUs: make(chan *gomatrixserverlib.HeaderedEvent, 128),
incomingEDUs: make(chan *gomatrixserverlib.EDU, 128),
incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128),
retryServerCh: make(chan bool, 0),
retryServerCh: make(chan bool),
}
oqs.queues[destination] = oq
}