From 5373d6280c326cf1df0e04f34c0910aa7bbb7d77 Mon Sep 17 00:00:00 2001 From: JamesClarke01 Date: Sat, 22 Feb 2025 18:37:48 +0000 Subject: [PATCH] rest: Increased max rest time from 120s to 600s --- apps/rest/rest.app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/rest/rest.app.js b/apps/rest/rest.app.js index 8564d8206..e0aeb558f 100644 --- a/apps/rest/rest.app.js +++ b/apps/rest/rest.app.js @@ -232,11 +232,11 @@ const onTouchPerQuadrantPerMode = { SET_REST: [ [MAIN_MENU, Bangle.buzz], [null, null], [null, () => { - restSeconds = Math.min(120, Math.max(0, restSeconds - 15)); + restSeconds = Math.min(600, Math.max(0, restSeconds - 15)); Bangle.buzz(100); }], [null, () => { - restSeconds = Math.min(120, Math.max(0, restSeconds + 15)); + restSeconds = Math.min(600, Math.max(0, restSeconds + 15)); Bangle.buzz(100); }], ],