// The update of channels is delegated to each thing handler
for (Thing thing : getThing().getThings()) {
+ if (!thing.isEnabled()) {
+ continue;
+ }
ThingHandler handler = thing.getHandler();
if (handler instanceof FreeboxThingHandler) {
((FreeboxThingHandler) handler).updateNetInfo(hosts);
// The update of channels is delegated to each thing handler
for (Thing thing : getThing().getThings()) {
+ if (!thing.isEnabled()) {
+ continue;
+ }
ThingHandler handler = thing.getHandler();
if (handler instanceof FreeboxThingHandler) {
((FreeboxThingHandler) handler).updateAirPlayDevice(devices);