mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +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) {
|
||||
startLevelSetterJob = scheduler.scheduleWithFixedDelay(() -> {
|
||||
for (Thing t : things) {
|
||||
if (!ThingHandlerHelper.isHandlerInitialized(t)) {
|
||||
if (!ThingHandlerHelper.isHandlerInitialized(t) && t.isEnabled()) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user