From e4a953d0c817dc3ee9a21b691b545ab32679f88d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 6 Mar 2025 13:14:08 +0000 Subject: [PATCH] Add `?no_universal_links=true` to OIDC cb url so EX doesn't try to handle it This is specific to macOS and only affects cases where auth is attempted in the non-default browser Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/BasePlatform.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BasePlatform.ts b/src/BasePlatform.ts index 2093881cc5..96f0c62b23 100644 --- a/src/BasePlatform.ts +++ b/src/BasePlatform.ts @@ -466,6 +466,7 @@ export default abstract class BasePlatform { // The redirect URL has to exactly match that registered at the OIDC server, so // ensure that the fragment part of the URL is empty. url.hash = ""; + url.searchParams.set("no_universal_links", "true"); return url; }