Skip to content

Commit

Permalink
Merge PR #173: Allow multiple values for ASObject.InReplyTo
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferplusplus authored Jan 8, 2024
1 parent 2d7e698 commit a439c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ActivityPub.Types/AS/ASObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public Linkable<ImageObject>? Image
/// Indicates one or more entities for which this object is considered a response.
/// </summary>
/// <seealso href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inReplyTo" />
public Linkable<ASObject>? InReplyTo
public LinkableList<ASObject>? InReplyTo
{
get => Entity.InReplyTo;
set => Entity.InReplyTo = value;
Expand Down Expand Up @@ -366,7 +366,7 @@ public sealed class ASObjectEntity : ASEntity<ASObject, ASObjectEntity>, IJsonOn

/// <inheritdoc cref="ASObject.InReplyTo" />
[JsonPropertyName("inReplyTo")]
public Linkable<ASObject>? InReplyTo { get; set; }
public LinkableList<ASObject>? InReplyTo { get; set; }

/// <inheritdoc cref="ASObject.Location" />
[JsonPropertyName("location")]
Expand Down

0 comments on commit a439c2b

Please sign in to comment.