This commit is contained in:
Marcel Pociot
2020-05-04 16:34:41 +02:00
parent f8464d2b4d
commit 7aa1225e31
4 changed files with 48 additions and 4 deletions

View File

@@ -126,9 +126,9 @@ class Client
$this->logger->info($data->message);
$this->logger->info("Connected to {$httpProtocol}://{$data->subdomain}.{$host}");
static::$subdomains[] = "$data->subdomain.{$this->configuration->host()}:{$this->configuration->port()}";
static::$subdomains[] = "{$httpProtocol}://{$data->subdomain}.{$host}";
$deferred->resolve();
$deferred->resolve($data);
});
}, function (\Exception $e) use ($deferred, $sharedUrl, $subdomain, $authToken) {