getAppDetails rename to get & cached load

This commit is contained in:
MaxKey
2026-04-09 21:26:36 +08:00
parent 82f5617775
commit 21231b58ec
25 changed files with 28 additions and 28 deletions

View File

@@ -85,11 +85,11 @@ public class UserInfoEndpoint {
try{
oAuth2Authentication = oauth20tokenServices.loadAuthentication(access_token);
String client_id= oAuth2Authentication.getOAuth2Request().getClientId();
String client_id = oAuth2Authentication.getOAuth2Request().getClientId();
ClientDetails clientDetails =
clientDetailsService.loadClientByClientId(client_id,true);
Apps app = appsService.get(client_id);
Apps app = appsService.get(client_id,true);
AbstractAuthorizeAdapter adapter;
if(ConstsBoolean.isTrue(app.getIsAdapter())){