fixed methos isUserTokenDefault

This commit is contained in:
Massimiliano Assante 2022-07-27 10:20:40 +02:00
parent a4fdfcc547
commit 280b1bde27
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class TokensUtils {
*/
public static boolean isUserTokenDefault(Caller caller){
return caller.getClient().getType().equals(ClientType.USER) && caller.getTokenQualifier().equals(DEFAULT_QUALIFIER_USER_TOKEN);
return caller.getClient().getType().equals(ClientType.USER);
}