Skip to content

Commit

Permalink
Merge pull request #354 from plivo/SMS-7151
Browse files Browse the repository at this point in the history
SMS-7151
  • Loading branch information
eshangupta-plivo authored Nov 11, 2024
2 parents 42683ca + 903246a commit 0eda3bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## [4.66.3](https://github.com/plivo/plivo-php/tree/v4.66.3) (2024-11-08)
**Bug fix**
-Fix subsquent requests to other services after a lookup request

## [4.66.2](https://github.com/plivo/plivo-php/tree/v4.66.2) (2024-10-23)
**Feature - FraudCheck param in Create, Get and List Session**
- Support for the `fraud_check` parameter in sms verify session request
Expand Down
2 changes: 2 additions & 0 deletions src/Plivo/BaseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ public function sendRequest(PlivoRequest $request, $url = null)

static::$requestCount++;

static::$isLookupRequest = false;
static::$isZentrunkRequest = false;
if (!$plivoResponse->ok() && !static::$isVoiceRequest) {
return $plivoResponse;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Version
* @const int PHP helper library patch number
*/

const PATCH = 2;
const PATCH = 3;

/**
* @return string
Expand Down

0 comments on commit 0eda3bb

Please sign in to comment.