Fix FLEXIAPI-191 Add quotes for the pn-prid parameter in FlexisipPusherConnector

This commit is contained in:
Timothée Jaussoin 2024-06-18 17:09:03 +02:00
parent 47acf6cb9d
commit 747e308831
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
v1.5
---
- Fix FLEXIAPI-191 Add quotes for the pn-prid parameter in FlexisipPusherConnector
- Fix FLEXIAPI-186 Ensure that empty objects are serialized in JSON as objects and not empty arrays
- Fix FLEXIAPI-185 Return null if the account dictionary is empty in the API
- Fix FLEXIAPI-184 Append phone_change_code and email_change_code to the admin /accounts/<id> endpoint if they are available

View file

@ -67,7 +67,7 @@ class FlexisipPusherConnector
$command = $this->pusherPath
. " --pn-provider '" . $this->pnProvider . "'"
. " --pn-param '" . $this->pnParam . "'"
. " --pn-prid " . $this->pnPrid
. " --pn-prid '" . $this->pnPrid . "'"
. " --customPayload '" . $payload . "'";
if (in_array($this->pnProvider, ['apns', 'apns.dev'])) {