XAMPPRocky/octocrab

field 'author' and 'committer' of type 'RepoCommitPage' are wrong

Closed this issue · 1 comments

The fields 'author' and 'committer' should be of type 'CommitAuthor' instead of 'GitUserTime'.

pub struct RepoCommitPage {
pub url: Url,
pub author: Option<CommitAuthor>,
pub committer: Option<CommitAuthor>,
pub message: String,
pub comment_count: u64,
pub tree: CommitObject,

#[serde(skip_serializing_if = "Option::is_none")]
pub verification: Option<Verification>,

}

This was fixed and can be closed?