Skip to content

Commit

Permalink
Remove redundant seconds to milliseconds conversion of audio jitter a…
Browse files Browse the repository at this point in the history
…s it's already converted at the time of parsing
  • Loading branch information
aravind-raveendran committed Oct 25, 2023
1 parent 14ba050 commit 75e1b44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ final class StatsInfoViewModel: ObservableObject {
result.append(
StatData(
key: String(localized: "stream.stats.audio-jitter.label", bundle: .module),
value: "\(Int(audioJitter * 1000)) ms"
value: "\(audioJitter) ms"
)
)
}
Expand Down

0 comments on commit 75e1b44

Please sign in to comment.