From ca62b334539c307cf07492cd8721304f721a3e71 Mon Sep 17 00:00:00 2001 From: SheetJS Date: Wed, 3 Dec 2025 20:54:09 -0500 Subject: [PATCH] XLSB defined name nit --- bits/38_xlstypes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bits/38_xlstypes.js b/bits/38_xlstypes.js index 28a3e11..e5992dc 100644 --- a/bits/38_xlstypes.js +++ b/bits/38_xlstypes.js @@ -485,7 +485,7 @@ function parse_XLUnicodeStringNoCch(blob, cch, opts) { /* 2.5.294 XLUnicodeString */ function parse_XLUnicodeString(blob, length, opts) { var cch = blob.read_shift(opts && opts.biff == 2 ? 1 : 2); - if(cch === 0) { blob.l++; return ""; } + if(cch === 0) { if(opts.biff <= 8) blob.l++; return ""; } return parse_XLUnicodeStringNoCch(blob, cch, opts); } /* BIFF5 override */