Fixed errant operator

This commit is contained in:
BenjiFuse
2021-08-23 16:09:42 -04:00
committed by Benjamin
parent f468b67335
commit 785d0b43a2

View File

@ -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;