mirror of
https://github.com/therootcompany/keyfetch.js.git
synced 2025-05-09 23:56:36 +00:00
bugfix: properly pass details and msg
This commit is contained in:
parent
c57a08f0cd
commit
6730e1321e
@ -71,7 +71,7 @@ module.exports = {
|
|||||||
* @returns {AuthError}
|
* @returns {AuthError}
|
||||||
*/
|
*/
|
||||||
DEVELOPER_ERROR: function (old, msg, details) {
|
DEVELOPER_ERROR: function (old, msg, details) {
|
||||||
return create(old, msg, E_DEVELOPER, 500, details);
|
return create(old, msg || old, E_DEVELOPER, 500, details);
|
||||||
},
|
},
|
||||||
BAD_GATEWAY: function (err) {
|
BAD_GATEWAY: function (err) {
|
||||||
var msg =
|
var msg =
|
||||||
@ -83,7 +83,7 @@ module.exports = {
|
|||||||
if (err.response && err.response.statusCode) {
|
if (err.response && err.response.statusCode) {
|
||||||
details.push("response.statusCode = " + err.response.statusCode);
|
details.push("response.statusCode = " + err.response.statusCode);
|
||||||
}
|
}
|
||||||
return create(msg, msg, E_BAD_GATEWAY, 502);
|
return create(msg, msg, E_BAD_GATEWAY, 502, details);
|
||||||
},
|
},
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user