Skip to content

Commit

Permalink
fixed dispatching to corrent node
Browse files Browse the repository at this point in the history
  • Loading branch information
p3root committed Feb 18, 2019
1 parent 1958b3b commit 45aac6e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/automatica.core/Automatica.Core.Driver/DriverBase.cs
Expand Up @@ -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;
Expand Down

0 comments on commit 45aac6e

Please sign in to comment.