From 5f668c717374ab9709a6f8006ec82f9c5febe2df Mon Sep 17 00:00:00 2001 From: Michael Willis Date: Tue, 8 Mar 2022 09:42:53 -0700 Subject: [PATCH] Typo in RoutingPort Constructor - isInternal --- .../PepperDashEssentialsBase/Routing/RoutingPort.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingPort.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingPort.cs index cfd6f09e..79dd4eda 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingPort.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Routing/RoutingPort.cs @@ -25,7 +25,7 @@ namespace PepperDash.Essentials.Core Type = type; ConnectionType = connType; Selector = selector; - IsInternal = IsInternal; + IsInternal = isInternal; } }