From 4419e5e4ed9b57e109182c67cea23b1a75661ae7 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 4 Oct 2025 09:35:31 +0000 Subject: [PATCH] Update util.js Signed-off-by: ed --- copyparty/web/util.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/copyparty/web/util.js b/copyparty/web/util.js index e7cc8620..0f8d42da 100644 --- a/copyparty/web/util.js +++ b/copyparty/web/util.js @@ -1040,10 +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 <= 25000000000) return "BD"; - if (b <= 50000000000) return "BD-DL"; - if (b <= 100000000000) return "BDXL-TL"; - if (b <= 128000000000) return "BDXL-QL"; + 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'];