diff options
-rw-r--r-- | client/src/assets/player/stats/stats-card.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/stats/stats-card.ts b/client/src/assets/player/stats/stats-card.ts index 291631088..d9f0d2fe9 100644 --- a/client/src/assets/player/stats/stats-card.ts +++ b/client/src/assets/player/stats/stats-card.ts | |||
@@ -193,7 +193,7 @@ class StatsCard extends Component { | |||
193 | 193 | ||
194 | const duration = player.duration() | 194 | const duration = player.duration() |
195 | 195 | ||
196 | let volume = `${player.volume() * 100}` | 196 | let volume = `${Math.round(player.volume() * 100)}` |
197 | if (player.muted()) volume += ' (muted)' | 197 | if (player.muted()) volume += ' (muted)' |
198 | 198 | ||
199 | const networkActivity = playerNetworkInfo.downloadSpeed | 199 | const networkActivity = playerNetworkInfo.downloadSpeed |