Commit b34ab5f8 authored by KingRainbow44's avatar KingRainbow44
Browse files

Fix OAuth Authenticator

parent 52c86afe
...@@ -215,12 +215,7 @@ public final class DefaultAuthenticators { ...@@ -215,12 +215,7 @@ public final class DefaultAuthenticators {
request.getResponse().send("Authentication is not available with the default authentication method."); request.getResponse().send("Authentication is not available with the default authentication method.");
} }
@Override public void handleDesktopRedirection(AuthenticationRequest request) { @Override public void handleRedirection(AuthenticationRequest request, ClientType type) {
assert request.getResponse() != null;
request.getResponse().send("Authentication is not available with the default authentication method.");
}
@Override public void handleMobileRedirection(AuthenticationRequest request) {
assert request.getResponse() != null; assert request.getResponse() != null;
request.getResponse().send("Authentication is not available with the default authentication method."); request.getResponse().send("Authentication is not available with the default authentication method.");
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment