Skip to content

Commit

Permalink
fix: column_url is sometimes not set
Browse files Browse the repository at this point in the history
This would result in failing deserialization
  • Loading branch information
0xB10C committed Jun 1, 2023
1 parent aa4889c commit 846413d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ pub struct ProjectCard {
pub column_name: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub previous_column_name: Option<String>,
pub column_url: Url,
#[serde(skip_serializing_if = "Option::is_none")]
pub column_url: Option<Url>,
}

#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
Expand Down

0 comments on commit 846413d

Please sign in to comment.