diff --git a/CHANGELOG.md b/CHANGELOG.md index 58195c74..81c0afed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ If you are upgrading from v0.16.x, replace the binary (or run `docker pull`). If - PostgreSQL: Incomplete channel binding implementation. - JMAP: Return RFC-3339-conformant UTCDate literals in capabilities: min `0001-01-01T00:00:00Z`, max `9999-12-31T23:59:59Z`. - Reject invalid duration values (e.g. `1h30m`). +- Branding: Custom logos for domains do not work. ## [0.16.12] - 2026-07-06 diff --git a/crates/common/src/enterprise/mod.rs b/crates/common/src/enterprise/mod.rs index 60b82b2b..cd02edba 100644 --- a/crates/common/src/enterprise/mod.rs +++ b/crates/common/src/enterprise/mod.rs @@ -171,7 +171,7 @@ impl Server { let mut domain_id = u32::MAX; let mut tenant_id = None; if let Some((d_id, t_id)) = self.domain(domain).await?.map(|d| (d.id, d.id_tenant)) - && let Some(domain_record) = self.registry().object::(domain_id.into()).await? + && let Some(domain_record) = self.registry().object::(d_id.into()).await? { logo_url = domain_record.logo; domain_id = d_id;