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)