mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
fix studio auth handling
This commit is contained in:
parent
c0b972eec7
commit
f426e6d2b2
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user