From d37650a8823bec5f171af494355e26135bb5f4de Mon Sep 17 00:00:00 2001 From: Benjamin Blake Date: Wed, 1 Apr 2020 13:05:25 -0600 Subject: [PATCH] Amendment - Fixed a bug in the new "getByID" method --- src/Api/Repositories.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Repositories.php b/src/Api/Repositories.php index fc0e528..0dab64b 100644 --- a/src/Api/Repositories.php +++ b/src/Api/Repositories.php @@ -126,7 +126,7 @@ class Repositories extends AbstractAllApiRequester { $client = $this->getClient(); try { - $response = $this->get("/repositories/$repoId"); + $response = $this->get("repositories/$repoId"); $statusCode = $response->getStatusCode(); $body = (string) $response->getBody(); if ($statusCode == 200) {