mirror of
https://github.com/sitelease/sugar-cube-client.git
synced 2025-10-29 19:12:30 +01:00
Fixed errant operator
This commit is contained in:
@ -66,7 +66,7 @@ class Client implements RequestChainableInterface
|
|||||||
{
|
{
|
||||||
// Append a slash to any URL that doesn't end in '/'
|
// Append a slash to any URL that doesn't end in '/'
|
||||||
if (!$this->endsWith($giteaURL, '/')) {
|
if (!$this->endsWith($giteaURL, '/')) {
|
||||||
$giteaURL += "/";
|
$giteaURL .= "/";
|
||||||
}
|
}
|
||||||
$this->giteaURL = $giteaURL;
|
$this->giteaURL = $giteaURL;
|
||||||
$this->authToken = $authToken;
|
$this->authToken = $authToken;
|
||||||
|
|||||||
Reference in New Issue
Block a user