From ec81fcdf4125595991e071dba792ea4d490128e1 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 4 Nov 2023 23:28:09 -0400 Subject: [PATCH] Remove no-op call --- src/Tgstation.Server.Host/Controllers/HomeController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)