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";