- fixed Socket setup if SocketURL is not found, closed #464

This commit is contained in:
Exodus4D
2017-04-12 18:22:01 +02:00
parent 231a13b697
commit 446949738b

View File

@@ -104,7 +104,10 @@ class Socket {
$this->initSocket();
if( !$this->socket ){
if(
!$this->socket ||
!$this->socketUri
){
// Socket not active (e.g. URI missing)
return $response;
}