fix: mergable can be null?

This commit is contained in:
Patrick 2024-11-13 19:24:55 +01:00
parent e419e48e7f
commit e7ba129bed
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F

View file

@ -61,7 +61,7 @@ struct PR {
merged_at: Option<String>, merged_at: Option<String>,
// merge conflicts don't have a merge_commit_sha // merge conflicts don't have a merge_commit_sha
merge_commit_sha: Option<String>, merge_commit_sha: Option<String>,
mergeable: bool, mergeable: Option<bool>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]