Fix conflicting name error

This commit is contained in:
Jordan Dominion
2025-05-09 21:32:26 -04:00
parent 203258b3aa
commit 721beaff68
3 changed files with 3 additions and 3 deletions
@@ -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);
}