From c0a4fec4010c917112253d99de872b7f7bc7d463 Mon Sep 17 00:00:00 2001 From: Chloe Surett Date: Wed, 1 Oct 2025 08:25:15 -0400 Subject: [PATCH] Add blu ray discs Signed-off-by: Chloe Surett --- copyparty/web/util.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/copyparty/web/util.js b/copyparty/web/util.js index 95043b4a..e7cc8620 100644 --- a/copyparty/web/util.js +++ b/copyparty/web/util.js @@ -1040,6 +1040,10 @@ 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"; return "LTO"; } var humansize_fmts = ['0', '1', '2', '2c', '3', '3c', '4', '4c', '5', '5c', 'fuzzy'];