Merge pull request #29 from korv1982/master

Minor changes
This commit is contained in:
Lucas Liu
2018-09-05 17:27:46 +08:00
committed by GitHub
3 changed files with 24 additions and 8 deletions

5
xls.go
View File

@@ -37,7 +37,10 @@ func OpenReader(reader io.ReadSeeker, charset string) (wb *WorkBook, err error)
for _, file := range dir {
name := file.Name()
if name == "Workbook" {
book = file
if book == nil {
book = file
}
//book = file
// break
}
if name == "Book" {