From f426e6d2b2f3e41761d29a27f1ca07d00fd07606 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:43:23 +0100 Subject: [PATCH] fix studio auth handling --- Bloxstrap/App.xaml.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index 6d5d0d5..d0ac99e 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -232,11 +232,16 @@ namespace Bloxstrap commandLine = $"--app --deeplink {LaunchArgs[0]}"; } - else if (LaunchArgs[0].StartsWith("roblox-studio:") || LaunchArgs[0].StartsWith("roblox-studio-auth:")) + else if (LaunchArgs[0].StartsWith("roblox-studio:")) { commandLine = ProtocolHandler.ParseUri(LaunchArgs[0]); isStudioLaunch = true; } + else if (LaunchArgs[0].StartsWith("roblox-studio-auth:")) + { + commandLine = LaunchArgs[0]; + isStudioLaunch = true; + } else { commandLine = "--app";