From df86a8e16243e24fe2ebfa2b1d591e3801c44fbc Mon Sep 17 00:00:00 2001 From: farley128 Date: Fri, 26 Dec 2025 16:22:46 -0500 Subject: [PATCH] Rename isForward to isForwarded in the Message.cs file --- DiscordChatExporter.Core/Discord/Data/Message.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Core/Discord/Data/Message.cs b/DiscordChatExporter.Core/Discord/Data/Message.cs index 00d9432e..713ef5e6 100644 --- a/DiscordChatExporter.Core/Discord/Data/Message.cs +++ b/DiscordChatExporter.Core/Discord/Data/Message.cs @@ -40,7 +40,7 @@ public partial record Message( public bool IsReplyLike => IsReply || Interaction is not null; // A message is a forward if its reference type is Forward - public bool IsForward { get; } = Reference?.Kind == MessageReferenceKind.Forward; + public bool IsForwarded { get; } = Reference?.Kind == MessageReferenceKind.Forward; public bool IsEmpty { get; } = string.IsNullOrWhiteSpace(Content)