Skip to content

Commit

Permalink
use my fork for now
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Mar 25, 2015
1 parent dc99a3b commit 7584126
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion lib/common/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,11 @@ function makeAuthorizedRequest(config) {
function authorize(reqOpts, callback) {
getAuthClient(function(err, authClient) {
if (err) {
callback(err);
if (err.message.indexOf("Could not load") === 0) {
callback(null, reqOpts);
} else {
callback(err);
}
return;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"duplexify": "^3.2.0",
"extend": "^2.0.0",
"fast-crc32c": "^0.1.3",
"google-auth-library": "^0.9.3",
"google-auth-library": "stephenplusplus/google-auth-library-nodejs",
"mime-types": "^2.0.8",
"node-uuid": "^1.4.2",
"once": "^1.3.1",
Expand Down

0 comments on commit 7584126

Please sign in to comment.