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 8c7278e commit 4c64f33Copy full SHA for 4c64f33
solid/lib/Controller/ServerController.php
@@ -109,7 +109,9 @@ private function createAuthServerConfig() {
109
if (isset($_GET['client_id'])) {
110
$clientId = $_GET['client_id'];
111
} else if (isset($_POST['client_id'])) {
112
- $clientId = $_POST['client_id'];
+ if (isset($_POST['refresh_token'])) { // FIXME: Why does the test suite break without this?
113
+ $clientId = $_POST['client_id'];
114
+ }
115
}
116
$client = $this->getClient($clientId);
117
$keys = $this->getKeys();
0 commit comments