diff --git a/src/automatica.core/Automatica.Core.Driver/DriverBase.cs b/src/automatica.core/Automatica.Core.Driver/DriverBase.cs index e333eae50..890425772 100644 --- a/src/automatica.core/Automatica.Core.Driver/DriverBase.cs +++ b/src/automatica.core/Automatica.Core.Driver/DriverBase.cs @@ -124,8 +124,10 @@ public bool Configure() { return; } - Enqueue(source, value); - //driverNode.WriteValue(source, value); + if (driverNode is DriverBase driverBase) + { + driverBase.Enqueue(source, value); + } }); ChildrensCreated += driverNode.ChildrensCreated;