fix query format

This commit is contained in:
yggverse 2024-07-08 04:36:04 +03:00
parent ee3d403364
commit acad5e14cc

View File

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