Browse Source

allow http 201 status code after finalizing order

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

4
acme.sh

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

Loading…
Cancel
Save