From 3f8208f2050deceee6895532845b400b9dcd38e3 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Wed, 14 Jan 2026 18:02:32 +0100 Subject: [PATCH] Apply suggestion from @CommanderStorm --- server/model/domain_expiry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/model/domain_expiry.js b/server/model/domain_expiry.js index f1f66c863..508a9aa24 100644 --- a/server/model/domain_expiry.js +++ b/server/model/domain_expiry.js @@ -167,7 +167,7 @@ class DomainExpiry extends BeanModel { throw new TranslatableError("domain_expiry_public_suffix_too_short", { publicSuffix: tld.publicSuffix }); } if (!tld.isIcann) { - throw new TranslatableError("domain_expiry_unsupported_is_icann", { domain: tld.domain }); + throw new TranslatableError("domain_expiry_unsupported_is_icann", { domain: tld.domain, publicSuffix: tld.publicSuffix }); } const rdap = await getRdapServer(tld.publicSuffix);