mirror of
https://github.com/esphome/esphome.git
synced 2025-04-14 14:50:32 +01:00
Merge branch 'dev' into vornado-ir
This commit is contained in:
commit
0a6a2be78f
@ -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…
x
Reference in New Issue
Block a user