fix: Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jonathan Arndt 2026-05-15 13:04:28 -07:00 committed by GitHub
parent b83af26b77
commit e57bc43a10
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -313,6 +313,8 @@ namespace PepperDash.Core
/// </summary> /// </summary>
public void SendText(string text) public void SendText(string text)
{ {
this.PrintSentText(text);
var bytes = Encoding.GetEncoding(28591).GetBytes(text); var bytes = Encoding.GetEncoding(28591).GetBytes(text);
SendBytes(bytes); SendBytes(bytes);
} }