diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index 16fc481..ee14cfc 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -230,7 +230,7 @@ namespace Bloxstrap } else if (LaunchArgs[0].StartsWith("roblox-studio:") || LaunchArgs[0].StartsWith("roblox-studio-auth:")) { - commandLine = LaunchArgs[0]; + commandLine = ProtocolHandler.ParseUri(LaunchArgs[0]); isStudioLaunch = true; } else diff --git a/Bloxstrap/ProtocolHandler.cs b/Bloxstrap/ProtocolHandler.cs index 44ff873..2edb25b 100644 --- a/Bloxstrap/ProtocolHandler.cs +++ b/Bloxstrap/ProtocolHandler.cs @@ -18,7 +18,9 @@ namespace Bloxstrap { "browsertrackerid", "-b " }, { "robloxLocale", "--rloc " }, { "gameLocale", "--gloc " }, - { "channel", "-channel " } + { "channel", "-channel " }, + // studio + { "task", "-task " }, }; public static string ParseUri(string protocol)