Skip to content

Commit

Permalink
Fix Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadv184 committed Aug 8, 2021
1 parent 8834ae9 commit 23b56c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ArCaptcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public function verify(string $challenge_id):bool
} catch (GuzzleException $e) {
return false;
}
return $response['status']??false;
return $response['success']??false;
}
}

0 comments on commit 23b56c0

Please sign in to comment.