From 6b7407ced2bd9820a2f44fe60cb92aff2971e029 Mon Sep 17 00:00:00 2001 From: khushal Date: Thu, 23 Jan 2025 17:14:24 +0530 Subject: [PATCH] (20250123) --- controllers_v2/core/auth_token.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/controllers_v2/core/auth_token.py b/controllers_v2/core/auth_token.py index 3dc937f..97b2e91 100644 --- a/controllers_v2/core/auth_token.py +++ b/controllers_v2/core/auth_token.py @@ -210,8 +210,8 @@ class CoreAuthTokenController(CoreBaseModel): "authType": auth_token.authType, "user": auth_token.user.model_dump(), "clientUserId": auth_token.clientUserId, - "clientDisplayName": auth_token.clientDisplayName, - "clientDisplayPicture": auth_token.clientDisplayPicture, + "clientDisplayName": display_name, + "clientDisplayPicture": display_picture, "auth": auth_token.auth, "token": auth_token.token, "firstRefreshTs": auth_token.firstRefreshTs, @@ -305,8 +305,8 @@ class CoreAuthTokenController(CoreBaseModel): "auth": auth_token.auth, "token": auth_token.token, "status": auth_token.status, - "clientDisplayName": auth_token.clientDisplayName, - "clientDisplayPicture": auth_token.clientDisplayPicture, + "clientDisplayName": display_name, + "clientDisplayPicture": display_picture, "lastRefreshTs": request_ts, "firstRefreshTs": { "$cond": {