Skip to content
Snippets Groups Projects
Unverified Commit 70a21de4 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #11082 from nextcloud/fix/10584/no_invalidate_token_oauth

Do not invalidate main token on OAuth
parents 5767f1c9 be2d8cc4
No related branches found
No related tags found
No related merge requests found
...@@ -366,10 +366,10 @@ class ClientFlowLoginController extends Controller { ...@@ -366,10 +366,10 @@ class ClientFlowLoginController extends Controller {
$serverPath = $protocol . "://" . $this->request->getServerHost() . $serverPostfix; $serverPath = $protocol . "://" . $this->request->getServerHost() . $serverPostfix;
$redirectUri = 'nc://login/server:' . $serverPath . '&user:' . urlencode($loginName) . '&password:' . urlencode($token); $redirectUri = 'nc://login/server:' . $serverPath . '&user:' . urlencode($loginName) . '&password:' . urlencode($token);
}
// Clear the token from the login here // Clear the token from the login here
$this->tokenProvider->invalidateToken($sessionId); $this->tokenProvider->invalidateToken($sessionId);
}
return new Http\RedirectResponse($redirectUri); return new Http\RedirectResponse($redirectUri);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment