Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

Commit

Permalink
Fixed wrong usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Lampe committed May 8, 2020
1 parent 609c6e9 commit ba33e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Instance/Ts3AudioBotInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function request($endpoint, $data = [], $botId = null)
}

if ($botId != null) {
$url = sprintf('/bot/use/%s/(%s)', [$botId, $url]);
$url = sprintf('/bot/use/%s/(%s)', $botId, $url);
}

return json_decode($this->httpClient->get($this->endpoint . $url, [
Expand Down

0 comments on commit ba33e56

Please sign in to comment.