Commit b46da173 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Don't log rate limited FIR.

parent 4911b7ad
......@@ -984,7 +984,7 @@ func rtcpDownListener(conn *rtpDownConnection, track *rtpDownTrack, s *webrtc.RT
if err != nil && err != ErrRateLimited {
log.Printf("sendPLI: %v", err)
}
} else if err != nil {
} else if err != nil && err != ErrRateLimited {
log.Printf("sendFIR: %v", err)
}
case *rtcp.ReceiverEstimatedMaximumBitrate:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment