From ab445c8897eef20f0b3ca95a1ec592635c1a46e4 Mon Sep 17 00:00:00 2001 From: Michihito Osanai <34957741+feuxfollets1013@users.noreply.github.com> Date: Wed, 22 Aug 2018 13:47:23 +0900 Subject: [PATCH] introduce fix for issue#1229 https://github.com/SheetJS/js-xlsx/issues/1229 --- bits/72_wbxml.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bits/72_wbxml.js b/bits/72_wbxml.js index 4c32f51..8af9724 100644 --- a/bits/72_wbxml.js +++ b/bits/72_wbxml.js @@ -80,13 +80,13 @@ function parse_wb_xml(data, opts)/*:WorkbookFile*/ { /* 18.2.5 definedName CT_DefinedName + */ case '': { - dname.Ref = data.slice(dnstart, idx); + dname.Ref = unescapexml(utf8read(data.slice(dnstart, idx))); wb.Names.push(dname); } break; case '': break;