From 39e7e2e0fa6cbe57240558e71e680fd0b9993f6e Mon Sep 17 00:00:00 2001 From: Valtos Date: Tue, 16 Jan 2024 19:11:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=BD=D0=B5=20=D0=BF=D0=BE=D1=85=D1=83?= =?UTF-8?q?=D0=B9=20=D1=8F=20=D0=BD=D0=B0=D1=81=D1=80=D1=83=20=D0=B2=20?= =?UTF-8?q?=D0=BC=D0=B0=D1=81=D1=82=D0=B5=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Content.Server/White/PandaSocket/Main/PandaStatusHost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/White/PandaSocket/Main/PandaStatusHost.cs b/Content.Server/White/PandaSocket/Main/PandaStatusHost.cs index b33a04fd21..1fe8ba2858 100644 --- a/Content.Server/White/PandaSocket/Main/PandaStatusHost.cs +++ b/Content.Server/White/PandaSocket/Main/PandaStatusHost.cs @@ -163,7 +163,7 @@ public sealed partial class PandaStatusHost : IDisposable var collection = HttpUtility.ParseQueryString(message); #pragma warning disable CS8714 - var json = JsonSerializer.Serialize(collection.AllKeys.ToDictionary(y => y, y => collection[y])); + var json = JsonSerializer.Serialize(collection.AllKeys.ToDictionary(y => y!, y => collection[y])); #pragma warning restore CS8714 var jsonDocument = JsonDocument.Parse(json); var root = jsonDocument.RootElement;