Skip to content

Commit

Permalink
Revert "Update sensorage.js for 10 day sensors"
Browse files Browse the repository at this point in the history
This reverts commit cec3eeb.
Need to update tests?  Not immediately clear why tests updated from 6 days to 9
days fails, so revertinig for now.
bewest committed Nov 25, 2024
1 parent c6dfaa1 commit 558927b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/plugins/sensorage.js
Original file line number Diff line number Diff line change
@@ -16,9 +16,9 @@ function init(ctx) {

sage.getPrefs = function getPrefs(sbx) {
return {
info: sbx.extendedSettings.info || times.days(8).hours
, warn: sbx.extendedSettings.warn || (times.days(9).hours)
, urgent: sbx.extendedSettings.urgent || (times.days(10).hours - 4)
info: sbx.extendedSettings.info || times.days(6).hours
, warn: sbx.extendedSettings.warn || (times.days(7).hours - 4)
, urgent: sbx.extendedSettings.urgent || (times.days(7).hours - 2)
, enableAlerts: sbx.extendedSettings.enableAlerts || false
};
};

0 comments on commit 558927b

Please sign in to comment.