diff options
author | xuri <xuri.me@gmail.com> | 2021-04-08 00:50:59 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-04-08 00:50:59 +0800 |
commit | 737b7839a25d530d6a1908fc6c4c33e1c047cdd6 (patch) | |
tree | 1eb400abcf18632cd4feb4c41a4051b74bf9f3a6 /lib.go | |
parent | 99963f89c70234a804521f6897354a82e996142c (diff) |
Fixed #819, read empty after streaming data writing
#65 fn: IMAGINARY, IMARGUMENT, IMCONJUGATE and IMDIV
Diffstat (limited to 'lib.go')
-rw-r--r-- | lib.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -52,6 +52,9 @@ func (f *File) readXML(name string) []byte { if content, ok := f.XLSX[name]; ok { return content } + if content, ok := f.streams[name]; ok { + return content.rawData.buf.Bytes() + } return []byte{} } |