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 94a2bce commit 70a1562Copy full SHA for 70a1562
src/controllers/auth.js
@@ -89,7 +89,10 @@ class AuthController {
89
'&scope=email profile' +
90
'&response_type=code' +
91
'&redirect_uri=' + process.env.GOOGLE_REDIRECT_URI +
92
- '&state=' + channel // state parameter will be passed to the redirect_uri
+ '&state=' + channel, // state parameter will be passed to the redirect_uri
93
+ {
94
+ userAgent: 'Chrome' // bypass Google check of outdated browser
95
+ }
96
);
97
98
/**
0 commit comments