fix: Update regex to allow xn-- domains
All checks were successful
Build Docker / BuildImage (push) Successful in 30s

This commit is contained in:
2025-02-27 13:24:37 +11:00
parent 06749d2c07
commit c4b1be2149
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ document.getElementById("domain").addEventListener("keyup", function (event) {
function getSSL() {
// Get the input value
const domain = document.getElementById("domain").value;
const domain = document.getElementById("domain").value.trim().toLowerCase();
// Set the domain parameter
const params = new URLSearchParams();
params.append("domain", domain);