fix: end devcommstatus with cr-lf instead of just -lf

This commit is contained in:
Andrew Welker
2025-06-26 13:50:42 -04:00
parent 95c1c01396
commit d96edfa8d0

View File

@@ -248,7 +248,7 @@ namespace PepperDash.Essentials.Core
foreach (var dev in Devices.Values.OfType<ICommunicationMonitor>())
{
CrestronConsole.ConsoleCommandResponse($"{dev}: {dev.CommunicationMonitor.Status}{Environment.NewLine}");
CrestronConsole.ConsoleCommandResponse($"{dev}: {dev.CommunicationMonitor.Status}\r\n");
}
}