Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

Commit 0cff4db

Browse files
committed
Fix platform getter
1 parent d32cfcb commit 0cff4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ private function buildRequestUrl() {
212212
}
213213

214214
// base url for api endpoint, always json data
215-
$url = $this->api->getPlatform . $this->method . 'json';
215+
$url = $this->api->getPlatform() . $this->method . 'json';
216216

217217
// put the main URL at the beginning of our args
218218
array_unshift($this->args, $url);

0 commit comments

Comments
 (0)