Skip to content

Commit

Permalink
fix query format
Browse files Browse the repository at this point in the history
  • Loading branch information
yggverse committed Jul 8, 2024
1 parent 55b4c87 commit 1129cd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,10 @@ public function request(
sprintf(
"%s%s\r\n",
$this->_path,
$this->_query
$this->_query ? sprintf(
'?%s',
$this->_query
) : null
)
);

Expand Down

0 comments on commit 1129cd1

Please sign in to comment.