1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Fixed #189 - Accessory data not showing up on Recent Activity

When I updated to 1.4 I made a change to prevent this chart from breaking since the normal accessory columns went missing. Forgot to fix it.
This commit is contained in:
Jon Ziebell 2019-11-18 15:05:39 -05:00
parent 48bff35f00
commit 082481a244

View File

@ -883,11 +883,18 @@ beestat.component.card.recent_activity.prototype.get_series_ = function() {
runtime_thermostat.compressor_cool_2 = null;
}
// Set these to 0 because they don't exist anymore.
runtime_thermostat.humidifier = 0;
runtime_thermostat.dehumidifier = 0;
runtime_thermostat.ventilator = 0;
runtime_thermostat.economizer = 0;
// Now set one to an appropriate value to make the rest of the code work.
if (runtime_thermostat.accessory_type !== 'off') {
runtime_thermostat[runtime_thermostat.accessory_type] = runtime_thermostat.accessory;
}
// The string includes +00:00 as the UTC offset but moment knows what time
// zone my PC is in...or at least it has a guess. This means that beestat
// graphs can now show up in local time instead of thermostat time.