This commit is contained in:
Marcel Pociot
2020-04-27 11:07:19 +02:00
parent 054e5b6a86
commit 0913e72f4f
3 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ class Client
$protocol = $this->configuration->port() === 443 ? "wss" : "ws";
connect($protocol."://{$this->configuration->host()}:{$this->configuration->port()}/__expose_control__?authToken={$token}", [], [
connect($protocol."://{$this->configuration->host()}:{$this->configuration->port()}/expose/control?authToken={$token}", [], [
'X-Expose-Control' => 'enabled',
], $this->loop)
->then(function (WebSocket $clientConnection) use ($sharedUrl, $subdomain) {