From 95d8e0f0fb4b6e4b6efcd4757ce4dbba73dd1fe0 Mon Sep 17 00:00:00 2001 From: Michael Biggins Date: Mon, 28 Sep 2020 20:05:53 +0100 Subject: [PATCH] Its impostor, not imposter. --- src/Impostor.Client/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Impostor.Client/Program.cs b/src/Impostor.Client/Program.cs index 2cacc4a..580cf0e 100644 --- a/src/Impostor.Client/Program.cs +++ b/src/Impostor.Client/Program.cs @@ -15,7 +15,7 @@ namespace Impostor.Client { var firstArg = Environment.GetCommandLineArgs().FirstOrDefault(); - if (firstArg != null && Uri.TryCreate(firstArg, UriKind.Absolute, out var uri) && uri.Scheme.ToLower() == "imposter") + if (firstArg != null && Uri.TryCreate(firstArg, UriKind.Absolute, out var uri) && uri.Scheme.ToLower() == "impostor") { HandleUri(uri).GetAwaiter().GetResult(); return; -- 2.39.5