1
0
Fork 0

PullRequest.requested_reviewers can be null

This commit is contained in:
Cyborus 2023-12-10 01:08:41 -05:00
parent b952e1108a
commit 0a07502dbc
No known key found for this signature in database

View file

@ -362,7 +362,7 @@ pub struct PullRequest {
pub number: u64,
pub patch_url: Url,
pub pin_order: u64,
pub requested_reviewers: Vec<User>,
pub requested_reviewers: Option<Vec<User>>,
pub state: State,
pub title: String,
#[serde(with = "time::serde::rfc3339")]