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
Currently, LdapPartialAttributes require the values to be String, i.e. a valid UTF-8 attribute.
However, a fairly common LDAP attribute is JpegPhoto where the raw bytes of the JpegPhoto are sent. It's not representable as a String. It should instead be a OsString or Vec<u8>.
WDYT? If you want this (it would be a breaking change, I understand) I can try to work on a PR, but otherwise I'll just have my own fork.
The text was updated successfully, but these errors were encountered:
Currently,
LdapPartialAttributes
require the values to beString
, i.e. a valid UTF-8 attribute.However, a fairly common LDAP attribute is
JpegPhoto
where the raw bytes of the JpegPhoto are sent. It's not representable as aString
. It should instead be aOsString
orVec<u8>
.WDYT? If you want this (it would be a breaking change, I understand) I can try to work on a PR, but otherwise I'll just have my own fork.
The text was updated successfully, but these errors were encountered: