diff --git a/backend/src/main/java/ch/puzzle/okr/service/clientconfig/TenantClientCustomizationProvider.java b/backend/src/main/java/ch/puzzle/okr/service/clientconfig/TenantClientCustomizationProvider.java index d46ad93bef..ba1218fec5 100644 --- a/backend/src/main/java/ch/puzzle/okr/service/clientconfig/TenantClientCustomizationProvider.java +++ b/backend/src/main/java/ch/puzzle/okr/service/clientconfig/TenantClientCustomizationProvider.java @@ -24,10 +24,10 @@ public TenantClientCustomizationProvider(final @Value("${okr.tenant-ids}") Strin private TenantClientCustomization readClientCustomizationConfig(String tenantId) { return new TenantClientCustomization( + env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.favicon", tenantId)), env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.logo", tenantId)), env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.triangles", tenantId)), env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.background-logo", tenantId)), - env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.favicon", tenantId)), env.getProperty(MessageFormat.format("okr.tenants.{0}.clientcustomization.title", tenantId)), new HashMap<>()); }