mirror of
https://github.com/Radarr/Radarr
synced 2026-01-20 06:23:47 +01:00
Fixed: Display media info bitrates in bits (#11087)
This commit is contained in:
parent
1cc2237ac0
commit
7e541d4653
1 changed files with 2 additions and 1 deletions
|
|
@ -7,8 +7,9 @@ function formatBitrate(input: string | number) {
|
|||
return '';
|
||||
}
|
||||
|
||||
const { value, symbol } = filesize(size, {
|
||||
const { value, symbol } = filesize(size / 8, {
|
||||
base: 10,
|
||||
bits: true,
|
||||
round: 1,
|
||||
output: 'object',
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue