Rename isForward to isForwarded in the Message.cs file

This commit is contained in:
farley128 2025-12-26 16:22:46 -05:00
parent cbbdee0a5e
commit df86a8e162

View file

@ -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)