-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fixed a bug that was introduced with 1.1.67 and would only occur in certain corner cases
- Loading branch information
1 parent
caf838a
commit 021d01b
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
* | ||
* @package UniFi_Controller_API_Client_Class | ||
* @author Art of WiFi <[email protected]> | ||
* @version Release: 1.1.67 | ||
* @version Release: 1.1.68 | ||
* @license This class is subject to the MIT license that is bundled with this package in the file LICENSE.md | ||
* @example This directory in the package repository contains a collection of examples: | ||
* https://github.com/Art-of-WiFi/UniFi-API-client/tree/master/examples | ||
|
@@ -22,7 +22,7 @@ class Client | |
/** | ||
* private and protected properties | ||
*/ | ||
private $class_version = '1.1.67'; | ||
private $class_version = '1.1.68'; | ||
protected $baseurl = 'https://127.0.0.1:8443'; | ||
protected $user = ''; | ||
protected $password = ''; | ||
|
@@ -3782,7 +3782,7 @@ protected function exec_curl($path, $payload = null) | |
$json_payload = json_encode($payload, JSON_UNESCAPED_SLASHES); | ||
$curl_options[CURLOPT_POSTFIELDS] = $json_payload; | ||
|
||
$this->headers[] = [ | ||
$this->headers = [ | ||
'content-type: application/json', | ||
'content-length: ' . strlen($json_payload) | ||
]; | ||
|