From 37364b06282f2fb9cc246ab5aa31b30a12858c22 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Fri, 17 Jul 2026 16:00:08 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20reducir=20ventana=20de=20ex=C3=A1menes?= =?UTF-8?q?=20recientes=20a=205=20minutos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- api/lab/get_examenes_rips.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/lab/get_examenes_rips.php b/api/lab/get_examenes_rips.php index 16e464a..a9ce0d9 100644 --- a/api/lab/get_examenes_rips.php +++ b/api/lab/get_examenes_rips.php @@ -19,7 +19,7 @@ $cacheRow = db()->prepare( FROM rips_examenes_pendientes WHERE numero_documento = ? AND DATE(created_at) = CURDATE() - AND created_at >= NOW() - INTERVAL 30 MINUTE + AND created_at >= NOW() - INTERVAL 5 MINUTE ORDER BY created_at DESC LIMIT 1" );