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
We had problems getting a response from our LDAP server until we figured out we needed to patch a line in services/web/app/src/Features/Contacts/ContactController.js:
the line const ldapcontacts = getLdapContacts(contacts)
We had problems getting a response from our LDAP server until we figured out we needed to patch a line in services/web/app/src/Features/Contacts/ContactController.js:
the line
const ldapcontacts = getLdapContacts(contacts)
needs to be
const ldapcontacts = await getLdapContacts(contacts)
otherwise we'll just receive a "Promise pending" in the logs and the LDAP contacts will be missing from the user's contacts.
The text was updated successfully, but these errors were encountered: