fix studio auth handling

This commit is contained in:
bluepilledgreat 2023-10-04 13:43:23 +01:00
parent c0b972eec7
commit f426e6d2b2

View File

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