fixed issue with mixed up Google login, profile.id is undefined and this is causing the first record to be retrieved instead of the AND query failing

pull/1555/head
Deepak Prabhakara 2022-01-20 01:01:59 +00:00
parent 72d17652c2
commit 4f168616e7
1 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ export default NextAuth({
},
providers,
callbacks: {
async jwt({ token, user, account, profile }) {
async jwt({ token, user, account }) {
if (!user) {
return token;
}
@ -165,7 +165,7 @@ export default NextAuth({
// The arguments above are from the provider so we need to look up the
// user based on those values in order to construct a JWT.
if (account && profile && account.type === "oauth" && account.provider) {
if (account && account.type === "oauth" && account.provider && account.providerAccountId) {
let idP: IdentityProvider = IdentityProvider.GOOGLE;
if (account.provider === "saml") {
idP = IdentityProvider.SAML;
@ -178,7 +178,7 @@ export default NextAuth({
identityProvider: idP,
},
{
identityProviderId: profile.id as string,
identityProviderId: account.providerAccountId as string,
},
],
},