Skip to content

Commit b1dc0f9

Browse files
committed
Fix deleted_tasks field type in TaskDeletion struct
1 parent 90a153c commit b1dc0f9

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)