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.CurrentSourceInfoKey = "$transient";
return;
}
@ -241,9 +241,9 @@ namespace PepperDash.Essentials.Core.Routing
if (room == null)
{
this.LogDebug(
"No room found for display {destination}",
destination.Key
);
"No room found for display {destination}",
destination.Key
);
return;
}