From e57bc43a109166575a93d0c8f64fe9af2e5331f7 Mon Sep 17 00:00:00 2001 From: Jonathan Arndt Date: Fri, 15 May 2026 13:04:28 -0700 Subject: [PATCH] fix: Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/PepperDash.Core/Comm/GenericUdpClient.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PepperDash.Core/Comm/GenericUdpClient.cs b/src/PepperDash.Core/Comm/GenericUdpClient.cs index ec7f0e7f..c9a54505 100644 --- a/src/PepperDash.Core/Comm/GenericUdpClient.cs +++ b/src/PepperDash.Core/Comm/GenericUdpClient.cs @@ -313,6 +313,8 @@ namespace PepperDash.Core /// public void SendText(string text) { + this.PrintSentText(text); + var bytes = Encoding.GetEncoding(28591).GetBytes(text); SendBytes(bytes); }