Fixed the way the FE widget parses the sensor changes after the structural change to SensorDataChangeEvent

This commit is contained in:
Fabio Manganiello 2018-06-12 20:30:19 +02:00
parent e216eb4792
commit 64ee7e3e59
1 changed files with 3 additions and 3 deletions

View File

@ -11,12 +11,12 @@ $(document).ready(function() {
if (event.args.type == 'platypush.message.event.weather.NewWeatherConditionEvent') {
updateTemperature(event.args.temperature);
} else if (event.args.type == 'platypush.message.event.sensor.SensorDataChangeEvent') {
if ('temperature' in event.args) {
updateSensorTemperature(event.args.temperature);
if ('temperature' in event.args.data) {
updateSensorTemperature(event.args.data.temperature);
}
if ('humidity' in event.args) {
updateSensorHumidity(event.args.humidity);
updateSensorHumidity(event.args.data.humidity);
}
}
};