We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e0f96 commit 69afc36Copy full SHA for 69afc36
lib/Routes/SolidIdp.php
@@ -110,7 +110,7 @@ public static function respondToRegister() {
110
header("HTTP/1.1 400 Bad request");
111
return;
112
}
113
- $parsedOrigin = parse_url($clientData['redirect_uris'][0]);
+ $parsedOrigin = parse_url($clientData['redirect_uris'][0]); // FIXME: Should we have multiple origins?
114
$origin = $parsedOrigin['scheme'] . '://' . $parsedOrigin['host'];
115
if (isset($parsedOrigin['port'])) {
116
$origin .= ":" . $parsedOrigin['port'];
0 commit comments