mirror of
https://github.com/livekit/livekit.git
synced 2026-04-04 19:05:58 +00:00
Clean up condition that is not happening (#2207)
This commit is contained in:
@@ -394,22 +394,7 @@ func (r *RTPStatsSender) Update(
|
||||
"tsBefore", r.extStartTS,
|
||||
"tsAfter", extTimestamp,
|
||||
)
|
||||
if extTimestamp == 0 { // TODO-REMOVE-AFTER-DEBUG
|
||||
r.logger.Errorw(
|
||||
"invalid start timestamp", nil,
|
||||
"snBefore", r.extStartSN,
|
||||
"snAfter", extSequenceNumber,
|
||||
"snHighest", r.extHighestSN,
|
||||
"tsBefore", r.extStartTS,
|
||||
"tsAfter", extTimestamp,
|
||||
"tsHighest", r.extHighestTS,
|
||||
"firstTime", r.firstTime.String(),
|
||||
"startTime", r.startTime.String(),
|
||||
)
|
||||
}
|
||||
if extTimestamp != 0 {
|
||||
r.extStartTS = extTimestamp
|
||||
}
|
||||
r.extStartTS = extTimestamp
|
||||
}
|
||||
|
||||
if extTimestamp > r.extHighestTS {
|
||||
|
||||
Reference in New Issue
Block a user