From 904f0d1260973c1a0f99ea5050e24b3113b84050 Mon Sep 17 00:00:00 2001 From: Stiralbios Date: Fri, 27 May 2022 09:50:07 +0200 Subject: [PATCH] [ActivityReminder] Fix tempThreshold --- apps/activityreminder/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/activityreminder/boot.js b/apps/activityreminder/boot.js index d4ea307d5..fa9b8557d 100644 --- a/apps/activityreminder/boot.js +++ b/apps/activityreminder/boot.js @@ -25,7 +25,7 @@ function run() { function isNotWorn() { // todo in a futur release check temperature and mouvement in a futur release - return (Bangle.isCharging() || activityreminder_settings.tempThreshold <= E.getTemperature()); + return (Bangle.isCharging() || activityreminder_settings.tempThreshold >= E.getTemperature()); } function isDuringAlertHours(h) {