Skip to content

Commit

Permalink
fix #4442
Browse files Browse the repository at this point in the history
  • Loading branch information
neil committed Jul 8, 2023
1 parent 3761fb4 commit 8fd3a64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5020,9 +5020,9 @@ $_authorizations_map"
break
fi

if [ "$status" = "pending" ]; then
if _contains "$status" "pending"; then
_info "Pending, The CA is processing your order, please just wait. ($waittimes/$MAX_RETRY_TIMES)"
elif [ "$status" = "processing" ]; then
elif _contains "$status" "processing"; then
_info "Processing, The CA is processing your order, please just wait. ($waittimes/$MAX_RETRY_TIMES)"
else
_err "$d:Verify error:$response"
Expand Down

0 comments on commit 8fd3a64

Please sign in to comment.