You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your code has hack for Gitpod for replacement http to https (HandleSignInCallbackController.js), but it has wrong behaviour for Cloudflare. After replacement we get httpss in callbackUri instead https.
If request url already has https we don't need replace it to https. Because after that we get mismatch redirect url error.
How to reproduce?
Just run Remix package for Cloudflare Worker.
Context
N/A
Proposal
I'm not sure that it's good approach to fix wrong behaviour third party systems in your code, but anyway for solving this problem we need check and don't replace http to https if it already contains https.
Hey folks! I was going to name my firstborn after the person who fixes this issue, but at this rate, they might be applying for college before it happens. Any updates?
Describe the bug
Your code has hack for Gitpod for replacement http to https (HandleSignInCallbackController.js), but it has wrong behaviour for Cloudflare. After replacement we get httpss in callbackUri instead https.
HandleSignInCallbackController.js
Expected behavior
If request url already has https we don't need replace it to https. Because after that we get mismatch redirect url error.
How to reproduce?
Just run Remix package for Cloudflare Worker.
Context
N/A
Proposal
I'm not sure that it's good approach to fix wrong behaviour third party systems in your code, but anyway for solving this problem we need check and don't replace http to https if it already contains https.
For example, we can rewrite replacement:
const callbackUri = isForwardedHttpsTraffic ? request.url.replace('http:', 'https:') : request.url;
or just add additional condition:
const callbackUri = isForwardedHttpsTraffic && request.url.indexOf('https') !== 0 ? request.url.replace('http', 'https') : request.url;
The text was updated successfully, but these errors were encountered: