From 7587b9217bc33ee2e21019213abad60d5d11fcc3 Mon Sep 17 00:00:00 2001 From: rjindael Date: Sat, 29 Jul 2023 15:32:26 -0700 Subject: [PATCH] chore: roslyn tips --- Kiseki.Launcher/Controller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kiseki.Launcher/Controller.cs b/Kiseki.Launcher/Controller.cs index 1615a7d..0a18137 100644 --- a/Kiseki.Launcher/Controller.cs +++ b/Kiseki.Launcher/Controller.cs @@ -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);