enable errcheck

This commit is contained in:
aler9
2023-08-13 15:21:13 +02:00
committed by Alessandro Ros
parent 08ab6c6ed2
commit 18ddae4c50
63 changed files with 344 additions and 203 deletions

View File

@@ -82,9 +82,9 @@ func (h *serverMulticastWriter) runWriter() {
data := tmp.(typeAndPayload)
if data.isRTP {
h.rtpl.write(data.payload, rtpAddr)
h.rtpl.write(data.payload, rtpAddr) //nolint:errcheck
} else {
h.rtcpl.write(data.payload, rtcpAddr)
h.rtcpl.write(data.payload, rtcpAddr) //nolint:errcheck
}
}
}