Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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