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.
Passing a dn with international characters will successfylly rename the user, but the resulting dn will include encoded characters. As a result the user seems to be unaccessable from the "Active Directory Users and Computers".
v2 behaviour:
Version 2.3.3 correctly renamed the object to CN=Åke,DC=a,DC=b,DC=se.
Code
let client = ldapjs.createClient({ url: URL });
let oldDn = "CN=Test,DC=a,DC=b,DC=se"
let newDn = "CN=Åke,DC=a,DC=b,DC=se"
client.modifyDN(oldDn, newDn, (error: Error | null) => { ... }
The text was updated successfully, but these errors were encountered:
Passing a dn with international characters will successfylly rename the user, but the resulting dn will include encoded characters. As a result the user seems to be unaccessable from the "Active Directory Users and Computers".
v2 behaviour:
Version 2.3.3 correctly renamed the object to
CN=Åke,DC=a,DC=b,DC=se
.Code
The text was updated successfully, but these errors were encountered: