From eab53573cd273d5f9e3ef39641f54a8eb3375a30 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 15 May 2020 13:08:21 -0400 Subject: [PATCH] Fix topic response deserialization Fixes #990 --- .../Components/Interop/Topic/TopicResponse.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs b/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs index bb7d85414c..e0a397fae3 100644 --- a/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs +++ b/src/Tgstation.Server.Host/Components/Interop/Topic/TopicResponse.cs @@ -10,11 +10,11 @@ namespace Tgstation.Server.Host.Components.Interop.Topic /// /// The text to reply with as the result of a request, if any. /// - public string CommandResponseMessage { get; private set; } + public string CommandResponseMessage { get; set; } /// /// The s to send as the result of a request, if any. /// - public ICollection ChatResponses { get; private set; } + public ICollection ChatResponses { get; set; } } }