We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1cb1d9 commit 2858a52Copy full SHA for 2858a52
arduino-cloud.js
@@ -29,7 +29,7 @@ module.exports = function(RED) {
29
await connectionManager.connect(connectionConfig);
30
const property = await this.arduinoRestClient.getProperty(this.thing, this.propertyId);
31
if (typeof (property.last_value) !== "object" && property.last_value !== this.lastValue ||
32
- typeof (property.last_value) === "object" && _.isEqual(property.last_value, this.lastValue)
+ typeof (property.last_value) === "object" && !_.isEqual(property.last_value, this.lastValue)
33
) {
34
this.send(
35
{
0 commit comments