From a4e1b8ea7696dc96c3a6b34e45f5c1d6845400fd Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 23 Nov 2023 21:24:11 -0500 Subject: [PATCH] Nullify `ChatChannelExtensions` --- src/Tgstation.Server.Host/Extensions/ChatChannelExtensions.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Tgstation.Server.Host/Extensions/ChatChannelExtensions.cs b/src/Tgstation.Server.Host/Extensions/ChatChannelExtensions.cs index e4bb8948e3..3b77bd0b1f 100644 --- a/src/Tgstation.Server.Host/Extensions/ChatChannelExtensions.cs +++ b/src/Tgstation.Server.Host/Extensions/ChatChannelExtensions.cs @@ -4,8 +4,6 @@ using System.Linq; using Tgstation.Server.Host.Models; -#nullable disable - namespace Tgstation.Server.Host.Extensions { /// @@ -25,7 +23,7 @@ namespace Tgstation.Server.Host.Extensions /// /// The to retrieve information from. /// The IRC channel key stored in the if it exists, otherwise. - public static string GetIrcChannelKey(this ChatChannel chatChannel) + public static string? GetIrcChannelKey(this ChatChannel chatChannel) { var splits = GetIrcChannelSplits(chatChannel); if (splits.Count < 2)