mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix FLEXIAPI-191 Add quotes for the pn-prid parameter in FlexisipPusherConnector
This commit is contained in:
parent
47acf6cb9d
commit
747e308831
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'])) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue