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); } } }