From 86ba9e0f1693092097e3aa1409a2860f380a2300 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 30 Oct 2024 10:19:55 -0500 Subject: [PATCH] fix: set currentSourceKey & currentSource in order --- .../Routing/RoutingFeedbackManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs b/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs index 39782fc3..4e2ccc5b 100644 --- a/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs +++ b/src/PepperDash.Essentials.Core/Routing/RoutingFeedbackManager.cs @@ -187,8 +187,8 @@ namespace PepperDash.Essentials.Core.Routing Name = sourceTieLine.SourcePort.Key, }; - destination.CurrentSourceInfo = tempSourceListItem; ; destination.CurrentSourceInfoKey = "$transient"; + destination.CurrentSourceInfo = tempSourceListItem; return; }