From 628fc50d0d243f389ef7ba6f079cebbe2513c69d Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 17 Aug 2025 17:13:59 -0400 Subject: [PATCH] Fix recursive call --- .../Authority/Core/GraphQLAuthorityInvoker{TAuthority}.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Authority/Core/GraphQLAuthorityInvoker{TAuthority}.cs b/src/Tgstation.Server.Host/Authority/Core/GraphQLAuthorityInvoker{TAuthority}.cs index 35cc1cbcd1..6181cb3ddc 100644 --- a/src/Tgstation.Server.Host/Authority/Core/GraphQLAuthorityInvoker{TAuthority}.cs +++ b/src/Tgstation.Server.Host/Authority/Core/GraphQLAuthorityInvoker{TAuthority}.cs @@ -176,7 +176,7 @@ namespace Tgstation.Server.Host.Authority.Core async ValueTask IGraphQLAuthorityInvoker.InvokeTransformable( Func>> authorityInvoker, QueryContext? queryContext) - => await ((IGraphQLAuthorityInvoker)this).InvokeTransformable(authorityInvoker, queryContext) + => await ((IGraphQLAuthorityInvoker)this).InvokeTransformableAllowMissing(authorityInvoker, queryContext) ?? throw new InvalidOperationException("Authority invocation should have returned a non-nullable result!"); ///