Fix websocket service disconnect on invalid handshake (#7447)

This commit is contained in:
frytimo
2025-08-05 12:05:48 -03:00
committed by GitHub
parent 0157a58639
commit dc56886d41
4 changed files with 57 additions and 12 deletions

View File

@@ -37,5 +37,5 @@ class socket_exception extends \Exception {
$this->id = $id;
return parent::__construct($message, $code, $previous);
}
public function getResourceId() { return $this->resource_id; }
public function getResourceId() { return $this->id; }
}