aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/daemon/pomo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/pomo.rs b/src/daemon/pomo.rs
index 2ed7294..d05fad8 100644
--- a/src/daemon/pomo.rs
+++ b/src/daemon/pomo.rs
@@ -70,7 +70,7 @@ impl Pomo {
_ => 0, // will never hit this case
};
- if self.secs_elapsed >= duration {
+ if self.secs_elapsed > duration {
self.end_cycle();
}
}