From 8941196863e28c522d15df78eb133186f18dacc8 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Fri, 14 Apr 2023 11:48:40 -0400 Subject: [PATCH] minor improooooovment --- src/LoRa_APRS_iGate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index d3a4a8d..2e4ef2e 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -307,7 +307,7 @@ void loop() { AddresseAndMessage = newLoraMessage.substring(newLoraMessage.indexOf("::")+2); Addressee = AddresseAndMessage.substring(0, AddresseAndMessage.indexOf(":")); Message = AddresseAndMessage.substring(AddresseAndMessage.indexOf(":")+1); - show_display(firstLine, secondLine, Sender + " --> " + Addressee, Message, 2000); + show_display(firstLine, secondLine, Sender + " -> " + Addressee, Message, 2000); } } }