Skip cells with incorrect link to shared strings #40
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello.
I'm trying to parse a XLSX file, but the parser does not parse sheet's data. I see workbook, i see sheet's name, but 'sheets' field is empty.
I did a research and found that 'parse_ws_xml_data' generates exception:
exception on line 7495, because sstr is undefined, because 'p' contains only 't'.
I did a research of my file the cell (A1) that is causes exception has the following structure:
I tried to open the file by LibreOffice. Everything good. A1 cell does not contains anything.
I saved the opened file to other file. The new file was successfully parsed.
The first row in the new file does not have A1 cell.
The fix helps.