diff --git a/server/src/main/resources/html/static/recordings.js b/server/src/main/resources/html/static/recordings.js index f41a28e7..00dadfc1 100644 --- a/server/src/main/resources/html/static/recordings.js +++ b/server/src/main/resources/html/static/recordings.js @@ -194,7 +194,7 @@ function updateDiskSpace() { space.text(calculateSize(data.spaceFree) + ' / ' + calculateSize(data.spaceTotal)); throughput.bytes(data.throughput); throughput.timeframe(data.throughputTimeframe); - let bytesPerSecond = data.throughput / data.throughputTimeframe; + let bytesPerSecond = data.throughput / data.throughputTimeframe * 1000; throughput.text(calculateSize(bytesPerSecond) + '/s'); } else { if (console)