Skip to content

Commit

Permalink
fix operator
Browse files Browse the repository at this point in the history
  • Loading branch information
fadecore committed Feb 5, 2024
1 parent e324bbb commit de95d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit de95d9e

Please sign in to comment.