Skip to content

Commit 8117513

Browse files
committed
fix: Fix URL formatting by removing trailing slashes.
Adjusted the base URLs for sandbox and live environments to remove unnecessary trailing slashes. This ensures consistency and prevents potential issues with request concatenation.
1 parent 2bfe95a commit 8117513

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Credentials.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Credentials
2222
public function __construct(string $token, bool $sandbox = false)
2323
{
2424
$this->token = $token;
25-
$this->baseUrl = $sandbox ? "https://sandbox.fireapi.de/" : "https://live.fireapi.de/";
25+
$this->baseUrl = $sandbox ? "https://sandbox.fireapi.de" : "https://live.fireapi.de";
2626
}
2727

2828
}

0 commit comments

Comments
 (0)