diff options
| author | xuri <xuri.me@gmail.com> | 2018-10-18 10:23:08 +0800 |
|---|---|---|
| committer | xuri <xuri.me@gmail.com> | 2018-10-18 10:23:08 +0800 |
| commit | 90bdd3632f16244583525e580fa3edd42361db68 (patch) | |
| tree | b54f4ebcc38400852390a05f563f06a7fd491a1c /rows.go | |
| parent | 1c45425f12f38012b975c36f4d17bd1cec3c0aba (diff) | |
Fix the issue caused by missing tradition to strict conversion for `sharedStringsReader()`, relate issue #276
Diffstat (limited to 'rows.go')
| -rw-r--r-- | rows.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -249,7 +249,7 @@ func (f *File) sharedStringsReader() *xlsxSST { if len(ss) == 0 { ss = f.readXML("xl/SharedStrings.xml") } - _ = xml.Unmarshal([]byte(ss), &sharedStrings) + _ = xml.Unmarshal(namespaceStrictToTransitional(ss), &sharedStrings) f.SharedStrings = &sharedStrings } return f.SharedStrings |
