diff --git a/EmperorPalpatine/HTTPServer.cs b/EmperorPalpatine/HTTPServer.cs index f914699..84b5493 100644 --- a/EmperorPalpatine/HTTPServer.cs +++ b/EmperorPalpatine/HTTPServer.cs @@ -74,10 +74,6 @@ public class HTTPServer if (context.Request.Query.ContainsKey("vm")) { string vm = context.Request.Query["vm"]; - if (Program.VMs.All(v => v.cvm.Node != vm)) { - context.Response.StatusCode = 404; - return Results.Text($"404: {vm} not found."); - } q.VM = vm; } if (context.Request.Query.ContainsKey("username"))