Skip to content

Commit b175a09

Browse files
authored
Merge pull request #666 from coinmoles/fix/task_deletion
Fix deleted_tasks field type in TaskDeletion struct
2 parents f20af24 + b1dc0f9 commit b175a09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tasks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ pub struct TaskCancelation {
116116
#[serde(rename_all = "camelCase")]
117117
pub struct TaskDeletion {
118118
pub matched_tasks: usize,
119-
pub deleted_tasks: usize,
119+
pub deleted_tasks: Option<usize>,
120120
pub original_filter: String,
121121
}
122122

0 commit comments

Comments
 (0)