Skip to content

Commit dc11e23

Browse files
committed
fix: jsonignore 2 overseen bools
1 parent 1cf4a64 commit dc11e23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DisCatSharp/Entities/Message/DiscordMessage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,14 +361,14 @@ public DiscordMessageReference Reference
361361
/// <summary>
362362
/// Gets whether this message has a message reference (reply, announcement, etc.).
363363
/// </summary>
364-
[Experimental("We provide that temporary, as we figure out things.")]
364+
[Experimental("We provide that temporary, as we figure out things."), JsonIgnore]
365365
public bool HasMessageReference
366366
=> this.InternalReference is { Type: ReferenceType.Default };
367367

368368
/// <summary>
369369
/// Gets whether this message has forwarded messages.
370370
/// </summary>
371-
[Experimental("We provide that temporary, as we figure out things.")]
371+
[Experimental("We provide that temporary, as we figure out things.") JsonIgnore]
372372
public bool HasMessageSnapshots
373373
=> this.InternalReference is { Type: ReferenceType.Forward };
374374

0 commit comments

Comments
 (0)