From 62ef4e3b9b3cd8a45cf9b74d76e1b05d6c740d2a Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 23 Dec 2023 10:16:47 -0500 Subject: [PATCH] Nullify `ChunkData` --- src/Tgstation.Server.Host/Components/Interop/ChunkData.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Tgstation.Server.Host/Components/Interop/ChunkData.cs b/src/Tgstation.Server.Host/Components/Interop/ChunkData.cs index 8c442413c5..409179b660 100644 --- a/src/Tgstation.Server.Host/Components/Interop/ChunkData.cs +++ b/src/Tgstation.Server.Host/Components/Interop/ChunkData.cs @@ -1,6 +1,4 @@ -#nullable disable - -namespace Tgstation.Server.Host.Components.Interop +namespace Tgstation.Server.Host.Components.Interop { /// /// A packet of a split serialized set of data. @@ -16,6 +14,6 @@ namespace Tgstation.Server.Host.Components.Interop /// /// The partial JSON payload of the chunk. /// - public string Payload { get; set; } + public string? Payload { get; set; } } }