[ActivityReminder] Fix tempThreshold

master
Stiralbios 2022-05-27 09:50:07 +02:00
parent 358b06fd6c
commit 904f0d1260
1 changed files with 1 additions and 1 deletions

View File

@ -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) {