You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 14, 2024. It is now read-only.
var errObj = ERRORS[res.status];
==> var E = module.exports[errObj.err]; return new E(res.errorMessage || errObj.message, res.matchedDN || null, module.exports.getError); };
because errObj is undefined. Should we add LDAP_PARTIAL_RESULTS: 9 in codes.js?
The text was updated successfully, but these errors were encountered:
Our LDAP server returns error code is 9 and I looked at the codebase. I don't know why it is not in codes.js and it will cause an error here
module.exports.getError = function (res) {
assert.ok(res instanceof LDAPResult, 'res (LDAPResult) required');
var errObj = ERRORS[res.status];
==>
var E = module.exports[errObj.err];
return new E(res.errorMessage || errObj.message,
res.matchedDN || null,
module.exports.getError);
};
because errObj is undefined. Should we add
LDAP_PARTIAL_RESULTS: 9
in codes.js?The text was updated successfully, but these errors were encountered: