Skip to content

Commit 5f02120

Browse files
committed
Merge branch 'vnext'
2 parents e53491e + 2fe8998 commit 5f02120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CompatBot/Database/Providers/ContentFilter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public static async ValueTask PerformFilterActions(
323323

324324
private static void DumpMessageContent(DiscordMessage message, StringBuilder content)
325325
{
326-
if (content is {Length: >0})
326+
if (message.Content is {Length: >0})
327327
content.AppendLine(message.Content);
328328
foreach (var attachment in message.Attachments.Where(a => a.FileName is {Length: >0}))
329329
content.AppendLine(attachment.FileName);

0 commit comments

Comments
 (0)