From 4911fd0c4a025f171633fa417b9cb00035f614b6 Mon Sep 17 00:00:00 2001 From: robnielsen Date: Mon, 23 Nov 2020 17:12:25 -0600 Subject: [PATCH] [insteon] Fixed status updates not getting published for some polled devices (#9110) Signed-off-by: Rob Nielsen --- .../openhab/binding/insteon/internal/device/InsteonDevice.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.binding.insteon/src/main/java/org/openhab/binding/insteon/internal/device/InsteonDevice.java b/bundles/org.openhab.binding.insteon/src/main/java/org/openhab/binding/insteon/internal/device/InsteonDevice.java index c101e54f3..ef0aff209 100644 --- a/bundles/org.openhab.binding.insteon/src/main/java/org/openhab/binding/insteon/internal/device/InsteonDevice.java +++ b/bundles/org.openhab.binding.insteon/src/main/java/org/openhab/binding/insteon/internal/device/InsteonDevice.java @@ -468,7 +468,7 @@ public class InsteonDevice { // mark feature as pending qe.getFeature().setQueryStatus(DeviceFeature.QueryStatus.QUERY_PENDING); // also mark this queue as pending so there is no doubt - featureQueried = qe.getFeature(); + this.featureQueried = qe.getFeature(); } else { logger.debug("qe taken off bcast: {} {}", qe.getFeature(), qe.getMsg()); }