fix blacklisting

This commit is contained in:
2026-05-14 13:15:02 -04:00
parent 46d780f566
commit e1c9508ed3
+1 -1
View File
@@ -58,7 +58,7 @@ router.post('/domains/new', authMw.AllowIfAuthenticated, async(req, res, next) =
// Make sure domain is valid // Make sure domain is valid
const domainLabel = reqBody.register_domain_label; const domainLabel = reqBody.register_domain_label;
const domainTLD = reqBody.register_domain_tld; const domainTLD = reqBody.register_domain_tld;
const fullDomain = domainLabel + domainLabel; const fullDomain = domainLabel + "." + domainLabel;
if(validationError !== undefined) if(validationError !== undefined)
errors = validationError.details; errors = validationError.details;