1
0
Fork 0

original_url should be optional

This commit is contained in:
Cyborus 2023-11-19 14:31:28 -05:00
parent 54f65650b5
commit 56b8557501
No known key found for this signature in database

View file

@ -263,7 +263,8 @@ pub struct Repository {
pub name: String,
pub open_issue_count: u64,
pub open_pr_counter: u64,
pub original_url: Url,
#[serde(deserialize_with = "crate::none_if_blank_url")]
pub original_url: Option<Url>,
pub owner: User,
pub permissions: Permission,
pub private: bool,