Browse Source

fix query format

main 1.0.1
yggverse 2 months ago
parent
commit
acad5e14cc
  1. 5
      src/Client/Request.php

5
src/Client/Request.php

@ -184,7 +184,10 @@ class Request @@ -184,7 +184,10 @@ class Request
$this->_host,
$this->_port,
$this->_path,
$this->_query
$this->_query ? sprintf(
'?%s',
$this->_query
) : null
)
);

Loading…
Cancel
Save