Skip to content

Commit

Permalink
Merge pull request #11 from OwenMelbz/patch-1
Browse files Browse the repository at this point in the history
Removed url encoding which breaks lookups.
  • Loading branch information
schaitanya authored Jun 29, 2017
2 parents df2a1f9 + bd41106 commit 4ffe044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Kickbox/Api/Kickbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function verify($email, array $options = [])
{
$body = isset($options['query']) ? $options['query'] : [];
$timeout = isset($options['timeout']) ? $options['timeout'] : 6000;
$body['email'] = rawurlencode($email);
$body['email'] = $email;
$body['timeout'] = $timeout;

return $this->client->get('/v2/verify', $body, $options);
Expand Down

0 comments on commit 4ffe044

Please sign in to comment.