We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a68d2c commit 70862fdCopy full SHA for 70862fd
src/Adapters/Auth/google.js
@@ -88,7 +88,7 @@ async function verifyIdToken({id_token: token, id}, {clientId}) {
88
);
89
}
90
91
- if (jwtClaims.sub !== id) {
+ if (typeof id != "undefined" && jwtClaims.sub !== id) {
92
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, `auth data is invalid for this user.`);
93
94
0 commit comments