Skip to content

Commit

Permalink
Merge pull request #1 from matterantimatter/master
Browse files Browse the repository at this point in the history
fixed issue jpillora#78, getValues option not getting passed to gscell2cell()
  • Loading branch information
Coobaha committed Sep 21, 2015
2 parents f1d8b86 + 8e93122 commit 5f044bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spreadsheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ Spreadsheet.prototype.receive = function(options, callback) {
rows[r] = {};
}

rows[r][c] = util.gcell2cell(cell, options.getValues, _this.opts.useCellTextValues);
rows[r][c] = util.gcell2cell(cell, _this.opts.getValues, _this.opts.useCellTextValues);
info.lastRow = util.num(r);
});

Expand Down

0 comments on commit 5f044bc

Please sign in to comment.