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
Since ldapjs 3.0.0, message objects no longer have a .object accessor. It is replaced by .pojo.
Message objects no longer have a .object accessor. This has been replaced with the .pojo accessor. It didn't make any sense to have a message object with an accessor that returns an object (it's confusing). The .pojo accessor states what will be returned: a plain JavaScript object. You may find that the actual message object now has fields you can directly use. See #841.
But ldap-authentication still uses the old accessor here and the groups property in the resulting object is therefore an array of undefined...
The text was updated successfully, but these errors were encountered:
Since ldapjs 3.0.0, message objects no longer have a
.object
accessor. It is replaced by.pojo
.But ldap-authentication still uses the old accessor here and the
groups
property in the resulting object is therefore an array ofundefined
...The text was updated successfully, but these errors were encountered: