Removed "." from _sub_domain to create a valid domain.

This commit is contained in:
peterv99 2024-12-24 17:30:50 +01:00
parent ab1a2045d9
commit c7cecd5b4f

View File

@ -147,7 +147,7 @@ _get_root() {
for rootDomain in $rootDomains; do
if _contains "$domain" "$rootDomain"; then
_domain="$rootDomain"
_sub_domain=$(echo "$domain" | sed "s/$rootDomain//g")
_sub_domain=$(echo "$domain" | sed "s/.$rootDomain//g")
return 0
fi
done