mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-11 05:41:52 +01:00
[automation] Do not consider disabled things for start level 80 (#1968)
Fixes #1967 Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
parent
090b889dbb
commit
cea96b3d81
@ -400,7 +400,7 @@ public class ThingManagerImpl
|
|||||||
public void onReadyMarkerAdded(ReadyMarker readyMarker) {
|
public void onReadyMarkerAdded(ReadyMarker readyMarker) {
|
||||||
startLevelSetterJob = scheduler.scheduleWithFixedDelay(() -> {
|
startLevelSetterJob = scheduler.scheduleWithFixedDelay(() -> {
|
||||||
for (Thing t : things) {
|
for (Thing t : things) {
|
||||||
if (!ThingHandlerHelper.isHandlerInitialized(t)) {
|
if (!ThingHandlerHelper.isHandlerInitialized(t) && t.isEnabled()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user