forked from platypush/platypush
Fixed the way the FE widget parses the sensor changes after the structural change to SensorDataChangeEvent
This commit is contained in:
parent
e216eb4792
commit
64ee7e3e59
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue