Skip to content

Commit

Permalink
fix: update command now correctly handles the -t flag
Browse files Browse the repository at this point in the history
  • Loading branch information
syntaxbullet committed Jan 11, 2024
1 parent e18e30d commit 93ba31d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ fn main() {
if let Some(status) = update.status {
task.status = status.chars().next().unwrap();
}
if let Some(tags) = update.tags {
task.tags = tags;
}
if let Some(title) = update.title {
task.title = title;
}
Expand Down

0 comments on commit 93ba31d

Please sign in to comment.