mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 15:07:03 +01:00
Fix conflicting name error
This commit is contained in:
@@ -354,7 +354,7 @@ namespace Tgstation.Server.Host.Components.Chat
|
||||
=> QueueMessageGeneric(mapping => mapping.IsWatchdogChannel, message, "WD");
|
||||
|
||||
/// <inheritdoc />
|
||||
public void QueueDeploymentMessage(string message)
|
||||
public void QueueRawDeploymentMessage(string message)
|
||||
=> QueueMessageGeneric(mapping => mapping.IsUpdatesChannel, message, null);
|
||||
|
||||
/// <inheritdoc />
|
||||
|
||||
@@ -61,7 +61,7 @@ namespace Tgstation.Server.Host.Components.Chat
|
||||
/// Queue a chat <paramref name="message"/> to configured deployment channels.
|
||||
/// </summary>
|
||||
/// <param name="message">The message being sent.</param>
|
||||
void QueueDeploymentMessage(string message);
|
||||
void QueueRawDeploymentMessage(string message);
|
||||
|
||||
/// <summary>
|
||||
/// Send the message for a deployment to configured deployment channels.
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user