From 8e2c01f62602c7875c7171d170d59bdfb568a98d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Bautista=20Fern=C3=A1ndez?= Date: Tue, 7 Apr 2026 12:38:29 +0200 Subject: [PATCH] =?UTF-8?q?fix.=20faltaba=20el=20caso=20en=20el=20que=20el?= =?UTF-8?q?=20tiempo=20a=C3=BAn=20no=20fuese=20cero?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/servicios/servicio_timer.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/servicios/servicio_timer.dart b/lib/servicios/servicio_timer.dart index 1b1e9b8..a989b91 100644 --- a/lib/servicios/servicio_timer.dart +++ b/lib/servicios/servicio_timer.dart @@ -55,6 +55,9 @@ class ServicioTimer { _activo = false; _iniciarFadeOut(); + } else { + _tiempoRestante = restante; + _controller.add(_tiempoRestante); }