mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Rename isForward to isForwarded in the Message.cs file
This commit is contained in:
parent
cbbdee0a5e
commit
df86a8e162
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue