Implement modifying tasks' "wait" value

This commit is contained in:
Dustin J. Mitchell
2021-05-23 18:16:11 -04:00
committed by Dustin J. Mitchell
parent d7d703f135
commit e977fb294c
8 changed files with 166 additions and 4 deletions

View File

@@ -40,5 +40,9 @@ pub(super) fn apply_modification(
task.remove_tag(&tag)?;
}
if let Some(wait) = modification.wait {
task.set_wait(wait)?;
}
Ok(())
}