diff --git a/src/Tgstation.Server.Host/Controllers/HomeController.cs b/src/Tgstation.Server.Host/Controllers/HomeController.cs index b33c5bf77d..659a379591 100644 --- a/src/Tgstation.Server.Host/Controllers/HomeController.cs +++ b/src/Tgstation.Server.Host/Controllers/HomeController.cs @@ -246,9 +246,9 @@ namespace Tgstation.Server.Host.Controllers // trust the system over the database because a user's name can change while still having the same SID systemIdentity = await systemIdentityFactory.CreateSystemIdentity(ApiHeaders.Username, ApiHeaders.Password, cancellationToken); } - catch (NotImplementedException ex) + catch (NotImplementedException) { - RequiresPosixSystemIdentity(ex); + // Intentionally suppressed } using (systemIdentity)