fix query format

This commit is contained in:
yggverse 2024-07-08 05:01:59 +03:00
parent 55b4c879e4
commit 1129cd1657

View File

@ -113,7 +113,10 @@ class Client
sprintf( sprintf(
"%s%s\r\n", "%s%s\r\n",
$this->_path, $this->_path,
$this->_query $this->_query ? sprintf(
'?%s',
$this->_query
) : null
) )
); );