Browse Source

fix operator

pull/4990/head
fadecore 2 years ago
committed by GitHub
parent
commit
de95d9e6e1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      acme.sh

2
acme.sh

@ -5109,7 +5109,7 @@ $_authorizations_map"
_on_issue_err "$_post_hook"
return 1
fi
if [ "$code" != "200" ] || [ "$code" != "201" ]; then
if [ "$code" != "200" ] && [ "$code" != "201" ]; then
_err "Sign failed, finalize code is not 200 or 201."
_err "$response"
_on_issue_err "$_post_hook"

Loading…
Cancel
Save