diff --git a/src/Tgstation.Server.Host/GraphQL/Mutation.cs b/src/Tgstation.Server.Host/GraphQL/Mutation.cs index eabb2f2ed6..31b896e4fc 100644 --- a/src/Tgstation.Server.Host/GraphQL/Mutation.cs +++ b/src/Tgstation.Server.Host/GraphQL/Mutation.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Threading; using System.Threading.Tasks; @@ -32,7 +32,7 @@ namespace Tgstation.Server.Host.GraphQL var tokenResponse = await loginAuthority.Invoke( authority => authority.AttemptLogin(cancellationToken)); - return tokenResponse.Bearer!; + return tokenResponse!.Bearer!; } } }