chore: roslyn tips

This commit is contained in:
rjindael 2023-07-29 15:32:26 -07:00
parent cceffd09c4
commit 7587b9217b
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
1 changed files with 2 additions and 2 deletions

View File

@ -27,13 +27,13 @@ namespace Kiseki.Launcher
if (args.Length > 0)
{
// TODO: handle these more gracefully
if (!Helpers.Base64.IsBase64String(args[0]))
if (!Base64.IsBase64String(args[0]))
{
Environment.Exit(0);
}
// TODO: the payload will soon include more members, such as whether to open the IDE or not (as well as values required for our weird loopback authentication thing)
string payload = Helpers.Base64.ConvertBase64ToString(args[0]);
string payload = Base64.ConvertBase64ToString(args[0]);
if (payload.Split("|").Length != 2)
{
Environment.Exit(0);