Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix hostname given in Apple config file
Signed-off-by: Nils Wittenbrink <[email protected]>
  • Loading branch information
Nils160988 authored and backportbot[bot] committed Mar 11, 2020
commit 80e422d7b40a29b54befcf2852c29a433457f31c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function httpGet(RequestInterface $request, ResponseInterface $response):
return false;
}

$absoluteURL = $request->getAbsoluteUrl();
$absoluteURL = $this->urlGenerator->getBaseUrl();
$parsedUrl = parse_url($absoluteURL);
if (isset($parsedUrl['port'])) {
$serverPort = (int) $parsedUrl['port'];
Expand Down