From 737b7839a25d530d6a1908fc6c4c33e1c047cdd6 Mon Sep 17 00:00:00 2001 From: xuri Date: Thu, 8 Apr 2021 00:50:59 +0800 Subject: Fixed #819, read empty after streaming data writing #65 fn: IMAGINARY, IMARGUMENT, IMCONJUGATE and IMDIV --- lib.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib.go') diff --git a/lib.go b/lib.go index 0c1938a..26d402a 100644 --- a/lib.go +++ b/lib.go @@ -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{} } -- cgit v1.2.1