From 529262527c6eaecffb309ed39b205b09fd084e14 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:19:44 +0100 Subject: [PATCH] add task to uri map --- Bloxstrap/App.xaml.cs | 2 +- Bloxstrap/ProtocolHandler.cs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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)