diff --git a/src/Tgstation.Server.Host/Authority/UserGroupAuthority.cs b/src/Tgstation.Server.Host/Authority/UserGroupAuthority.cs index 12005ff370..df7572562b 100644 --- a/src/Tgstation.Server.Host/Authority/UserGroupAuthority.cs +++ b/src/Tgstation.Server.Host/Authority/UserGroupAuthority.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Threading; @@ -82,7 +82,7 @@ namespace Tgstation.Server.Host.Authority userGroup = await userGroupsDataLoader.LoadAsync(id, cancellationToken); if (userGroup == null) - return NotFound(); + return Gone(); return new AuthorityResponse(userGroup); }