Fixed server deletion and creation allocation bugs

This commit is contained in:
Marcel Baumgartner
2023-04-14 13:59:35 +02:00
parent 068e02f59d
commit 7de723d0b8
2 changed files with 43 additions and 6 deletions

View File

@@ -138,7 +138,15 @@ public class ServersController : Controller
await MessageService.Emit($"wings.{node.Id}.serverfetch", server);
return Converter.FromServer(server);
try //TODO: Remove
{
return Converter.FromServer(server);
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
[HttpGet("{uuid}/install")]