Skip to content

Commit 3762fc8

Browse files
LogChannelHelper: Use subscript for "embed content omitted" note
1 parent c597298 commit 3762fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helpers/InvestigationsHelpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static async Task SendInfringingMessaageAsync(string logChannelKey, MockD
1313

1414
// If logging to #investigations and there is embed/forward data, leave it out & add a note to check #mod-logs instead
1515
if (logChannelKey == "investigations" && !string.IsNullOrEmpty(messageContentOverride) && messageContentOverride != infringingMessage.Content)
16-
messageContentOverride = $"{infringingMessage.Content}\n[...embed content omitted, check <#{Program.cfgjson.LogChannels["mod"].ChannelId}>...]";
16+
messageContentOverride = $"{infringingMessage.Content}\n-# [...embed content omitted, check <#{Program.cfgjson.LogChannels["mod"].ChannelId}>...]";
1717

1818
var embed = new DiscordEmbedBuilder()
1919
.WithDescription(string.IsNullOrWhiteSpace(messageContentOverride) ? infringingMessage.Content : messageContentOverride)

0 commit comments

Comments
 (0)