Skip to content

Commit

Permalink
Merge pull request #45 from DolbyIO/bugfix/incorrect-audio-jitter
Browse files Browse the repository at this point in the history
Remove redundant seconds to milliseconds conversion
  • Loading branch information
aravind-raveendran authored Oct 25, 2023
2 parents 14ba050 + 75e1b44 commit bbcb0f7
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 bbcb0f7

Please sign in to comment.