diff --git a/js/component/card/temperature_profiles.js b/js/component/card/temperature_profiles.js index fa4bbbf..0bd3e11 100644 --- a/js/component/card/temperature_profiles.js +++ b/js/component/card/temperature_profiles.js @@ -91,13 +91,9 @@ beestat.component.card.temperature_profiles.prototype.get_data_ = function() { }; if ( - this.fetching_data_ !== true && - ( - thermostat.profile === null || - moment().diff(moment(thermostat.profile.metadata.generated_at), 'days') >= 7 - ) + thermostat.profile === null || + moment().diff(moment(thermostat.profile.metadata.generated_at), 'days') >= 7 ) { - this.fetching_data_ = true; this.show_loading_('Fetching'); new beestat.api() .add_call( @@ -118,7 +114,6 @@ beestat.component.card.temperature_profiles.prototype.get_data_ = function() { 'thermostat' ) .set_callback(function(response) { - self.fetching_data_ = false; beestat.cache.set('thermostat', response.thermostat); }) .send();