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 ee3d403 commit acad5e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Client/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ public function getResponse(
$this->_host,
$this->_port,
$this->_path,
$this->_query
$this->_query ? sprintf(
'?%s',
$this->_query
) : null
)
);

Expand Down

0 comments on commit acad5e1

Please sign in to comment.