fix: Correctly compute the username from a CNAME
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
PapaTutuWawa 2024-01-06 21:11:05 +01:00
parent 996aa10866
commit 6f9f92e68a

View File

@ -24,8 +24,12 @@ import (
)
func handleSubdomain(domain, cname, path, giteaUrl, defaultCsp string, giteaClient *repo.GiteaClient, w http.ResponseWriter) {
hostParts := strings.Split(domain, ".")
username := hostParts[0]
username := ""
if cname != "" {
username = strings.Split(cname, ".")[0]
} else {
username = strings.Split(domain, ".")[0]
}
// Strip the leading /
if path[:1] == "/" {