Skip to content

Commit

Permalink
Fix ResolvedChannelData#parentId not allowing null values (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
Doc94 authored Aug 14, 2024
1 parent 1d2fdbe commit 63d4140
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ static ImmutableResolvedChannelData.Builder builder() {

// Only provided if channel is a thread
@JsonProperty("parent_id")
Possible<Id> parentId();
Possible<Optional<Id>> parentId();

}

0 comments on commit 63d4140

Please sign in to comment.