From a35e8b97e4163fa9953ae8eab7a8d0ede351ae1b Mon Sep 17 00:00:00 2001 From: Maurus Decimus <11444311+mdecimus@users.noreply.github.com> Date: Sat, 25 Apr 2026 08:19:38 +0200 Subject: [PATCH] v0.16.1 --- crates/registry/src/schema/structs_impl.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/registry/src/schema/structs_impl.rs b/crates/registry/src/schema/structs_impl.rs index 08f0162c..346cde22 100644 --- a/crates/registry/src/schema/structs_impl.rs +++ b/crates/registry/src/schema/structs_impl.rs @@ -4147,9 +4147,7 @@ impl RegistryJsonPropertyPatch for Bootstrap { value: JmapValue<'x>, ) -> PatchResult<'x> { match pointer.next_property() { - Some(Property::ServerHostname) => self - .server_hostname - .patch(pointer.with_validators(&[StringValidator::Hostname]), value), + Some(Property::ServerHostname) => self.server_hostname.patch(pointer, value), Some(Property::DefaultDomain) => self.default_domain.patch(pointer, value), Some(Property::RequestTlsCertificate) => { self.request_tls_certificate.patch(pointer, value)