From 785d0b43a288bdb5520aac543e87aa16ea8d8e03 Mon Sep 17 00:00:00 2001 From: BenjiFuse Date: Mon, 23 Aug 2021 16:09:42 -0400 Subject: [PATCH] Fixed errant operator --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index db50093..02672f6 100644 --- a/src/Client.php +++ b/src/Client.php @@ -66,7 +66,7 @@ class Client implements RequestChainableInterface { // Append a slash to any URL that doesn't end in '/' if (!$this->endsWith($giteaURL, '/')) { - $giteaURL += "/"; + $giteaURL .= "/"; } $this->giteaURL = $giteaURL; $this->authToken = $authToken;