fix: remove unnecessary semicolon and format logging message in RoutingFeedbackManager

This commit is contained in:
Neil Dorin 2026-03-12 22:21:16 -06:00
parent 3762fc120a
commit 69a7276248

View file

@ -162,7 +162,7 @@ namespace PepperDash.Essentials.Core.Routing
}; };
destination.CurrentSourceInfo = tempSourceListItem; destination.CurrentSourceInfo = tempSourceListItem;
;
destination.CurrentSourceInfoKey = "$transient"; destination.CurrentSourceInfoKey = "$transient";
return; return;
} }
@ -241,9 +241,9 @@ namespace PepperDash.Essentials.Core.Routing
if (room == null) if (room == null)
{ {
this.LogDebug( this.LogDebug(
"No room found for display {destination}", "No room found for display {destination}",
destination.Key destination.Key
); );
return; return;
} }