Missing dot.

This commit is contained in:
notsure2 2026-01-05 18:26:39 +02:00
parent 6f35e356bc
commit 3690ae037b
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ func randomHumanReadableServerName() string {
for j := 0; j < (rand.Intn(2) + 2); j++ {
name += randItem(syllables)
}
domain = name + randItem(topLevelDomains)
domain = name + "." + randItem(topLevelDomains)
case 2: // API/CDN Masking (e.g., "v2-node-42.static-cache.net")
vNum := rand.Intn(4) + 1