This commit is contained in:
Hitesh 2019-08-02 16:03:25 -07:00
parent 97530da6bc
commit 52d8943ac6
3 changed files with 5 additions and 1 deletions

View File

@ -1,2 +1,3 @@
AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/) AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)
Nyaundi Brian <danleyb2@gmail.com> (https://danleyb2.online/) Nyaundi Brian <danleyb2@gmail.com> (https://danleyb2.online/)
Hitesh Walia <hiteshwar.walia@gmail.com>

View File

@ -123,6 +123,7 @@ module.exports.create = function(config) {
headers: { Authorization: auth }, headers: { Authorization: auth },
json: data || true json: data || true
}; };
return request(req).then(function(resp) { return request(req).then(function(resp) {
if (resp.statusCode < 200 || resp.statusCode >= 300) { if (resp.statusCode < 200 || resp.statusCode >= 300) {
req.headers.Authorization = redacted; req.headers.Authorization = redacted;
@ -148,6 +149,7 @@ module.exports.create = function(config) {
'. Check subdomain, api key, etc' '. Check subdomain, api key, etc'
); );
} }
return resp;
}); });
} }
}; };

View File

@ -20,7 +20,8 @@
], ],
"author": "Nyaundi Brian <danleyb2@gmail.com> (https://danleyb2.online/)", "author": "Nyaundi Brian <danleyb2@gmail.com> (https://danleyb2.online/)",
"contributors": [ "contributors": [
"AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)" "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"Hitesh Walia <hiteshwar.walia@gmail.com>"
], ],
"license": "MPL-2.0", "license": "MPL-2.0",
"dependencies": {}, "dependencies": {},