mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fixed: Display media info bitrates in bits (#11087)
This commit is contained in:
@@ -7,8 +7,9 @@ function formatBitrate(input: string | number) {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
const { value, symbol } = filesize(size, {
|
const { value, symbol } = filesize(size / 8, {
|
||||||
base: 10,
|
base: 10,
|
||||||
|
bits: true,
|
||||||
round: 1,
|
round: 1,
|
||||||
output: 'object',
|
output: 'object',
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user