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>
This commit is contained in:
Michael Telatynski
2025-03-06 13:14:08 +00:00
parent e9a3625bd6
commit e4a953d0c8

View File

@@ -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;
}