client: fix panic when publishing with UDP

This commit is contained in:
aler9
2022-03-15 12:56:37 +01:00
parent f4c783bc85
commit d1cd6357f9

View File

@@ -720,8 +720,8 @@ func (c *Client) playRecordStart() {
}
for _, cct := range c.tracks {
cct.udpRTPListener.start(true)
cct.udpRTCPListener.start(true)
cct.udpRTPListener.start(false)
cct.udpRTCPListener.start(false)
}
}