diff options
Diffstat (limited to 'server/models/oauth/oauth-token.ts')
-rw-r--r-- | server/models/oauth/oauth-token.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/oauth/oauth-token.ts b/server/models/oauth/oauth-token.ts index 5c3781394..e3de9468e 100644 --- a/server/models/oauth/oauth-token.ts +++ b/server/models/oauth/oauth-token.ts | |||
@@ -106,10 +106,10 @@ getByRefreshTokenAndPopulateClient = function (refreshToken: string) { | |||
106 | refreshToken: token.refreshToken, | 106 | refreshToken: token.refreshToken, |
107 | refreshTokenExpiresAt: token.refreshTokenExpiresAt, | 107 | refreshTokenExpiresAt: token.refreshTokenExpiresAt, |
108 | client: { | 108 | client: { |
109 | id: token['client'].id | 109 | id: token.oAuthClientId |
110 | }, | 110 | }, |
111 | user: { | 111 | user: { |
112 | id: token['user'] | 112 | id: token.userId |
113 | } | 113 | } |
114 | } | 114 | } |
115 | 115 | ||