From 644b5413ec9d02ce4707b9a70d0866db7d3f53d5 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Wed, 22 Apr 2020 02:44:50 -0400 Subject: [PATCH] Fix missing ChatCommandsJson --- .../Components/Interop/Runtime/RuntimeInformation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Interop/Runtime/RuntimeInformation.cs b/src/Tgstation.Server.Host/Components/Interop/Runtime/RuntimeInformation.cs index 8b44d0f157..e89168dbb9 100644 --- a/src/Tgstation.Server.Host/Components/Interop/Runtime/RuntimeInformation.cs +++ b/src/Tgstation.Server.Host/Components/Interop/Runtime/RuntimeInformation.cs @@ -81,7 +81,7 @@ namespace Tgstation.Server.Host.Components.Interop.Runtime InstanceName = instance?.Name ?? throw new ArgumentNullException(nameof(instance)); Revision = revision ?? throw new ArgumentNullException(nameof(revision)); ChatChannelsJson = channelsJson ?? throw new ArgumentNullException(nameof(channelsJson)); - ChatChannelsJson = commandsJson ?? throw new ArgumentNullException(nameof(commandsJson)); + ChatCommandsJson = commandsJson ?? throw new ArgumentNullException(nameof(commandsJson)); SecurityLevel = securityLevel; ServerPort = serverPort; }