Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RetrievePagePropertyItem does not return any data for RichText properties (v4 preview) #317

Closed
Scantheus opened this issue Sep 7, 2022 · 2 comments
Assignees
Labels
bug Something isn't working
Milestone

Comments

@Scantheus
Copy link

Adding JsonProperty attribute to RichTextPropertyItem.cs fixed it for me.

public class RichTextPropertyItem : SimplePropertyItem
{
    public override string Type => "rich_text";

    [JsonProperty("rich_text")]
    public RichTextBase RichText { get; set; }
}
@KoditkarVedant KoditkarVedant added the bug Something isn't working label Sep 8, 2022
@KoditkarVedant KoditkarVedant self-assigned this Sep 10, 2022
@KoditkarVedant KoditkarVedant added this to the 4.0.0 milestone Sep 10, 2022
@KoditkarVedant
Copy link
Contributor

Fix is available as part of pre-release version - 4.0.0-preview-4.9.11.2022

@KoditkarVedant
Copy link
Contributor

4.0.0 Released

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants