Browse Source

Merge pull request #1498 from Mark-Simulacrum/fix-webhooks

serde does not deserialize null as if it was default
Mark Rousskov 3 years ago
parent
commit
b6d1bdef50
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/github.rs

+ 1 - 1
src/github.rs

@@ -245,7 +245,7 @@ pub struct PullRequestDetails {
 #[derive(Debug, serde::Deserialize)]
 pub struct Issue {
     pub number: u64,
-    #[serde(default)]
+    #[serde(deserialize_with = "opt_string")]
     pub body: String,
     created_at: chrono::DateTime<Utc>,
     pub updated_at: chrono::DateTime<Utc>,