TypeError: Cannot read properties of undefined (reading 'replace')
I'm using the node import of `read-excel-file@6.0.1`. When I'm trying to open a xlsx file, I get the following error: ``` TypeError: Cannot read properties of undefined (reading 'replace') at getTagName (.\node_modules\read-excel-file\modules\xml\dom.js:63:26) at getCellInlineStringValue (.\node_modules\read-excel-file\modules\xml\xlsx.js:31:26) at getInlineStringValue (.\node_modules\read-excel-file\modules\read\parseCell.js:48:16) at parseCellValue (.\node_modules\read-excel-file\modules\read\parseCellValue.js:38:15) at parseCell (.\node_modules\read-excel-file\modules\read\parseCell.js:46:12) at ./node_modules/read-excel-file/modules/read/parseCells.js:16:12 at Array.map (<anonymous>) at parseCells (.\node_modules\read-excel-file\modules\read\parseCells.js:15:16) at parseSheet (.\node_modules\read-excel-file\modules\read\parseSheet.js:6:15) at readXlsx (.\node_modules\read-excel-file\modules\read\readXlsx.js:74:15) at readXlsxFileContents (.\node_modules\read-excel-file\modules\read\readXlsxFileContents.js:21:16) at ./node_modules/read-excel-file/modules/read/readXlsxFileNode.js:15:12 at process.processTicksAndRejections (node:internal\process\task_queues:105:5) at async parseXLS (src\lib\server\excel.ts:13:14) at async parseXLSFile (src\lib\server\importer.ts:161:21) at async handleFileImport (src\lib\server\importer.ts:121:16) ``` When I open the file in Excel, turn off Protected View, and save it, the same file works without issues. I'm assuming that Excel's Protected View is somehow causing this issue...
issue