From 8e93122fc9a21ea2fd85a3e2cf0eca2134628a4c Mon Sep 17 00:00:00 2001 From: Matt Howard Date: Fri, 5 Jun 2015 16:44:21 -0400 Subject: [PATCH] fixed issue #78, getValues option not getting passed to gscell2cell() --- lib/spreadsheet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spreadsheet.js b/lib/spreadsheet.js index 792b8a1..af94100 100644 --- a/lib/spreadsheet.js +++ b/lib/spreadsheet.js @@ -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); });