diff --git a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs index abd5ef90c3..2aeca4f8f3 100644 --- a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs +++ b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs @@ -354,7 +354,7 @@ namespace Tgstation.Server.Host.Components.Chat => QueueMessageGeneric(mapping => mapping.IsWatchdogChannel, message, "WD"); /// - public void QueueDeploymentMessage(string message) + public void QueueRawDeploymentMessage(string message) => QueueMessageGeneric(mapping => mapping.IsUpdatesChannel, message, null); /// diff --git a/src/Tgstation.Server.Host/Components/Chat/IChatManager.cs b/src/Tgstation.Server.Host/Components/Chat/IChatManager.cs index 2b2faf9496..4f112afb69 100644 --- a/src/Tgstation.Server.Host/Components/Chat/IChatManager.cs +++ b/src/Tgstation.Server.Host/Components/Chat/IChatManager.cs @@ -61,7 +61,7 @@ namespace Tgstation.Server.Host.Components.Chat /// Queue a chat to configured deployment channels. /// /// The message being sent. - void QueueDeploymentMessage(string message); + void QueueRawDeploymentMessage(string message); /// /// Send the message for a deployment to configured deployment channels. diff --git a/src/Tgstation.Server.Host/Components/Instance.cs b/src/Tgstation.Server.Host/Components/Instance.cs index 8957678a3e..37454b7dbc 100644 --- a/src/Tgstation.Server.Host/Components/Instance.cs +++ b/src/Tgstation.Server.Host/Components/Instance.cs @@ -532,7 +532,7 @@ namespace Tgstation.Server.Host.Components } else if (preserveTestMerges) { - Chat.QueueDeploymentMessage("Automatic update has failed due to a conflicting testmerge!"); + Chat.QueueRawDeploymentMessage("Automatic update has failed due to a conflicting testmerge!"); throw new JobException(Api.Models.ErrorCode.InstanceUpdateTestMergeConflict); }