fix: factory ext
Lint / Oxlint (push) Successful in 7m41s
Lint / TypeScript (push) Successful in 7m41s
Deploy / Build (push) Successful in 8m6s
Lint / ESLint (push) Successful in 8m5s
Deploy / Deploy to Stapler (push) Successful in 3m58s

This commit is contained in:
2026-06-26 11:06:51 +02:00
parent ecf427b1e2
commit c41bdbec06
+1 -1
View File
@@ -88,7 +88,7 @@ export class DomainFactory {
newDomain(domain: string): Domain {
return {
name: domain,
extension: domain.split(".", 1)[1] ?? "",
extension: domain.split(".").slice(1).join("."),
searching: false,
available: true,
};