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 was archived by the owner on Aug 15, 2025. It is now read-only.
let domain_name = DomainName::try_from(maybe_domain_names.as_slice())?;
171
+
Ok(HomeServerDN{
172
+
domain_name,
173
+
additional_fields:RelativeDistinguishedName::try_from(maybe_additional_fields).map_err(|e| crate::errors::InvalidInput::Malformed(format!("Could not parse ActorDN additional_fields: Name attribute contained additional information which was not a valid RelativeDistinguishedName: {e}")))?,
174
+
})
175
+
}
176
+
}
177
+
138
178
/// Helper function. Takes an exclusive reference `Option<AttributeTypeAndValue>`, inspects if it
0 commit comments