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 b34f5a9 commit 4a17a8dCopy full SHA for 4a17a8d
GoogleSignIn/Sources/GIDSignIn.m
@@ -829,7 +829,8 @@ - (void)processAuthorizationResponse:(OIDAuthorizationResponse *)authorizationRe
829
} else {
830
NSString *errorString = [error localizedDescription];
831
GIDSignInErrorCode errorCode = kGIDSignInErrorCodeUnknown;
832
- if (error.code == OIDErrorCodeUserCanceledAuthorizationFlow) {
+ if (error.code == OIDErrorCodeUserCanceledAuthorizationFlow ||
833
+ error.code == OIDErrorCodeProgramCanceledAuthorizationFlow) {
834
// The user has canceled the flow at the iOS modal dialog.
835
errorString = kUserCanceledError;
836
errorCode = kGIDSignInErrorCodeCanceled;
0 commit comments