aboutsummaryrefslogtreecommitdiff
path: root/src/app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app.rs b/src/app.rs
index 81a574a..dafeed5 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -208,7 +208,8 @@ impl App {
208 pub fn parse_command(&mut self, input: &str) { 208 pub fn parse_command(&mut self, input: &str) {
209 let c = Command::from_string(input); 209 let c = Command::from_string(input);
210 match c { 210 match c {
211 Command::Add(name, kind, goal, auto) => { 211 Command::Add(name, goal, auto) => {
212 let kind = if goal == Some(1) { "bit" } else { "count" };
212 if kind == "count" { 213 if kind == "count" {
213 self.add_habit(Box::new(Count::new( 214 self.add_habit(Box::new(Count::new(
214 name, 215 name,