1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00

Removed reference to ecobee_thermostat from load

Properly doing it for not compressor and not geothermal this time.
This commit is contained in:
Jon Ziebell 2021-02-10 21:42:56 -05:00
parent b51a818476
commit 61ca26f054

View File

@ -155,10 +155,6 @@ beestat.layer.load.prototype.decorate_ = function(parent) {
beestat.setting('thermostat_id')
];
var ecobee_thermostat = beestat.cache.ecobee_thermostat[
thermostat.ecobee_thermostat_id
];
// Set the document title to include the thermostat name
if (thermostat.name !== null && thermostat.name.trim() !== '') {
document.title = 'beestat | ' + thermostat.name;
@ -178,8 +174,11 @@ beestat.layer.load.prototype.decorate_ = function(parent) {
}
// Fix some other stuff for non-heat-pump.
if (ecobee_thermostat.settings.hasHeatPump === false) {
// if (beestat.thermostat.get_system_type(thermostat.thermostat_id, 'heat') !== 'compressor') {
const sytem_type_heat = beestat.thermostat.get_system_type(thermostat.thermostat_id, 'heat');
if (
sytem_type_heat !== 'compressor' &&
sytem_type_heat !== 'geothermal'
) {
beestat.series.auxiliary_heat_1.name = beestat.series.sum_compressor_heat_1.name;
beestat.series.auxiliary_heat_1.color = beestat.series.sum_compressor_heat_1.color;
beestat.series.sum_auxiliary_heat_2.name = beestat.series.compressor_heat_2.name;