From f8521153c65eb49ebbfece496ad6aceccf58a182 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Tue, 9 Sep 2025 21:38:34 +0530 Subject: counting down to 00:00 not 00:01 --- src/daemon/pomo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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(); } } -- cgit v1.2.3