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.
The escapeFilterValue should only be used in the toString method of each filter. The raw value is the one sent to remote LDAP servers, and the specs dictate that the escape character should not be included. For example í should be sent as c3ad, not as \c3\ad.
Every case of
escapeFilterValue
in the following should be removed:filter/lib/string-parsing/parse-expression.js
Line 55 in 7876f8d
The
escapeFilterValue
should only be used in thetoString
method of each filter. Theraw
value is the one sent to remote LDAP servers, and the specs dictate that the escape character should not be included. For exampleí
should be sent asc3ad
, not as\c3\ad
.This is the culprit behind ldapjs/node-ldapjs#860.
The text was updated successfully, but these errors were encountered: