forked from kadirahq/flow-router
-
-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
Description
Google OAuth redirects to web apps with the scope included on the query string.
Example URL:
http://www.test.com/oauth-redirect?code=xxx&scope=https://www.googleapis.com/auth/gmail.modify
However, this line corrupts the query string, collapsing https://
to https:/
:
Line 478 in 6961ad1
original.call(self, path.replace(/\/\/+/g, '/'), state, dispatch, push); |