Browse Source

scheduler: extra days is a positive number

pull/2607/head
Maxim Prokhorov 1 month ago
parent
commit
44c4124ec3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/scheduler.cpp

+ 1
- 1
code/espurna/scheduler.cpp View File

@ -96,7 +96,7 @@ constexpr bool restore() {
}
constexpr int restoreDays() {
return - (SCHEDULER_RESTORE_DAYS);
return SCHEDULER_RESTORE_DAYS;
}
#if SCHEDULER_SUN_SUPPORT


Loading…
Cancel
Save