mirror of
https://github.com/esphome/esphome.git
synced 2025-01-18 10:25:56 +01:00
Fix recalc_timestamp_utc (#7894)
This commit is contained in:
parent
5fcd26bfe9
commit
f042c6e643
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ void ESPTime::recalc_timestamp_utc(bool use_day_of_year) {
|
|||
}
|
||||
|
||||
for (int i = 1970; i < this->year; i++)
|
||||
res += (year % 4 == 0) ? 366 : 365;
|
||||
res += (i % 4 == 0) ? 366 : 365;
|
||||
|
||||
if (use_day_of_year) {
|
||||
res += this->day_of_year - 1;
|
||||
|
|
Loading…
Reference in a new issue