diff options
author | william <willy.xiao1989@gmail.com> | 2021-05-24 15:27:36 +0800 |
---|---|---|
committer | william <willy.xiao1989@gmail.com> | 2021-05-24 15:27:36 +0800 |
commit | 2f74ec171d8c42367666014fa661eab26f088e68 (patch) | |
tree | 60ec1d28080ae2be73ea61963522e1b8eccbaa31 /rows.go | |
parent | 5bf3ea61547df2a36757f14bfba47bf22b747079 (diff) |
fix the bug when there was no count attribute in sharedStrings file
Diffstat (limited to 'rows.go')
-rw-r--r-- | rows.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -322,6 +322,9 @@ func (f *File) sharedStringsReader() *xlsxSST { Decode(&sharedStrings); err != nil && err != io.EOF { log.Printf("xml decode error: %s", err) } + if sharedStrings.Count == 0 { + sharedStrings.Count = len(sharedStrings.SI) + } if sharedStrings.UniqueCount == 0 { sharedStrings.UniqueCount = sharedStrings.Count } |