mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-22 22:34:05 -07:00
fix(v-add-web-domain-ssl): added fix for punnycode domains idn
Added fix for punnycode domain related by issue https://github.com/serghey-rodin/vesta/issues/1991
This commit is contained in:
parent
cfc46bb2a9
commit
fef5223920
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ if [[ "$domain" =~ .*\.$ ]]; then
|
|||
domain=$(echo "$domain" |sed -e "s/\.$//")
|
||||
fi
|
||||
|
||||
domain=$(idn -t --quiet -u "$domain" )
|
||||
domain=$(idn -t --quiet -a "$domain" )
|
||||
domain_idn=$(idn -t --quiet -a "$domain")
|
||||
|
||||
# Includes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue