mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-01-05 13:08:44 +08:00
Fix case sensitive detection of domain in the response request
This commit is contained in:
2
acme.sh
2
acme.sh
@@ -4082,7 +4082,7 @@ $_authorizations_map"
|
||||
|
||||
if [ "$ACME_VERSION" = "2" ]; then
|
||||
_idn_d="$(_idn "$d")"
|
||||
_candindates="$(echo "$_authorizations_map" | grep "^$_idn_d,")"
|
||||
_candindates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
|
||||
_debug2 _candindates "$_candindates"
|
||||
if [ "$(echo "$_candindates" | wc -l)" -gt 1 ]; then
|
||||
for _can in $_candindates; do
|
||||
|
||||
Reference in New Issue
Block a user