From e1c9508ed30e131d4427ec459593cd3efe4eef40 Mon Sep 17 00:00:00 2001 From: Modnark Date: Thu, 14 May 2026 13:15:02 -0400 Subject: [PATCH] fix blacklisting --- routes/domains.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/domains.js b/routes/domains.js index 9a0ba3f..ab419a3 100644 --- a/routes/domains.js +++ b/routes/domains.js @@ -58,7 +58,7 @@ router.post('/domains/new', authMw.AllowIfAuthenticated, async(req, res, next) = // Make sure domain is valid const domainLabel = reqBody.register_domain_label; const domainTLD = reqBody.register_domain_tld; - const fullDomain = domainLabel + domainLabel; + const fullDomain = domainLabel + "." + domainLabel; if(validationError !== undefined) errors = validationError.details;