Add Blu-ray discs to fuzzy file size type (#878)

Signed-off-by: Chloe Surett <chloe@surett.me>
Signed-off-by: ed <s@ocv.me>
Co-authored-by: ed <s@ocv.me>
This commit is contained in:
Chloe Surett 2025-10-04 05:35:58 -04:00 committed by GitHub
parent 4177c1d9ed
commit 1bcdf8c9e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1040,6 +1040,8 @@ function humansize_fuzzy(b) {
if (b <= 1300000000) return "GD-ROM";
if (b <= 4700000000) return "DVD";
if (b <= 9400000000) return "DVD-DL";
if (b <= 25025000000) return "BluRei";
if (b <= 50050000000) return "BD-DL";
return "LTO";
}
var humansize_fmts = ['0', '1', '2', '2c', '3', '3c', '4', '4c', '5', '5c', 'fuzzy'];