Dispatch sends again

This commit is contained in:
Neil Alexander 2020-05-06 14:15:33 +01:00
parent 18cb75b0ac
commit 7ac699bc77

View file

@ -89,7 +89,7 @@ func (oqs *OutgoingQueues) SendEvent(
oqs.queuesMutex.Unlock() oqs.queuesMutex.Unlock()
} }
oq.sendEvent(ev) go oq.sendEvent(ev)
} }
return nil return nil
@ -138,7 +138,7 @@ func (oqs *OutgoingQueues) SendInvite(
oqs.queuesMutex.Unlock() oqs.queuesMutex.Unlock()
} }
oq.sendInvite(inviteReq) go oq.sendInvite(inviteReq)
return nil return nil
} }
@ -182,7 +182,7 @@ func (oqs *OutgoingQueues) SendEDU(
oqs.queuesMutex.Unlock() oqs.queuesMutex.Unlock()
} }
oq.sendEDU(e) go oq.sendEDU(e)
} }
return nil return nil