Skip to content

Commit

Permalink
xml parser fix per issue #7.
Browse files Browse the repository at this point in the history
  • Loading branch information
mandric committed Jan 6, 2013
1 parent 71c70f5 commit 2853816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spreadsheets.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var getFeed = function(params, auth, query, cb) {
cb(new Error("HTTP error " + response.statusCode + ": " + http.STATUS_CODES[response.statusCode]));
}

var parser = new xml2js.Parser();
var parser = new xml2js.Parser(xml2js.defaults["0.1"]);
parser.on("end", function(result) {
cb(null, result);
});
Expand Down

0 comments on commit 2853816

Please sign in to comment.