Skip to content
This repository has been archived by the owner on May 24, 2019. It is now read-only.

Commit

Permalink
Merge pull request #55 from edwinPhd/patch-1
Browse files Browse the repository at this point in the history
fixed rounding error
  • Loading branch information
arnaudbreton committed Feb 18, 2015
2 parents e7d46b4 + c35d027 commit 647256f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mailjet/php-mailjet-v3-simple.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public function sendRequest($resource = false, $params = array(), $request = "GE
}
else
{
$this->_response = json_decode($buffer);
$this->_response = json_decode($buffer, false, 512, JSON_BIGINT_AS_STRING);
}

if ($request == 'POST') {
Expand Down

0 comments on commit 647256f

Please sign in to comment.