From ab73bbf97982b91843482bb318c5335f1260081f Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Fri, 26 Jul 2024 06:53:18 -0500 Subject: [PATCH] fix: remove call to remove routerequest The routerequest is being removed if the route is successfully made after the display has cooled down. This was an extraneous removal --- src/PepperDash.Essentials.Core/Routing/RouteRequest.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/PepperDash.Essentials.Core/Routing/RouteRequest.cs b/src/PepperDash.Essentials.Core/Routing/RouteRequest.cs index f8679b9d..0f51d174 100644 --- a/src/PepperDash.Essentials.Core/Routing/RouteRequest.cs +++ b/src/PepperDash.Essentials.Core/Routing/RouteRequest.cs @@ -29,8 +29,6 @@ namespace PepperDash.Essentials.Core Debug.LogMessage(LogEventLevel.Debug, "Unsubscribing from cooling feedback for {destination}", null, Destination.Key); coolingDevice.IsCoolingDownFeedback.OutputChange -= HandleCooldown; } - - Extensions.RemoveRouteRequestForDestination(Destination.Key); } } } \ No newline at end of file