From 19dcd2721a0cdf02e86014b048731feb30b7e027 Mon Sep 17 00:00:00 2001 From: David Peer Date: Fri, 19 Nov 2021 18:57:28 +0100 Subject: [PATCH] Correct number of minutes --- apps/lcars/lcars.app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/lcars/lcars.app.js b/apps/lcars/lcars.app.js index 2e001643b..a9adac0b0 100644 --- a/apps/lcars/lcars.app.js +++ b/apps/lcars/lcars.app.js @@ -91,8 +91,8 @@ function queueAlarm() { function handleAlarm(){ - // If alarm is zero, inform the user. - if(alarm == 0){ + // After n minutes, inform the user. + if(alarm == 1){ alarm = -1; var t = 300;