look for user (client) name in another place

This commit is contained in:
2023-03-29 18:08:36 -05:00
parent 07aa9cfa27
commit 4a87856601

View File

@ -426,7 +426,7 @@ public class Auth0AuthenticationModule implements QAuthenticationModuleInterface
/////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////
QUser qUser = new QUser(); QUser qUser = new QUser();
qUser.setFullName("Unknown"); qUser.setFullName("Unknown");
for(String key : List.of("name", "com.kingsrook.qqq.name")) for(String key : List.of("name", "com.kingsrook.qqq.name", "com.kingsrook.qqq.client_name"))
{ {
if(payload.has(key)) if(payload.has(key))
{ {