From da2fdabf09d6f236c592de52d496f60e34dd1955 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 4 Jul 2016 17:55:14 +0100 Subject: [PATCH] Only append the first character of the suffix for aprs.fi. --- YSFGateway/APRSWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YSFGateway/APRSWriter.cpp b/YSFGateway/APRSWriter.cpp index 672f165..87d3cd8 100644 --- a/YSFGateway/APRSWriter.cpp +++ b/YSFGateway/APRSWriter.cpp @@ -44,7 +44,7 @@ m_height(0) if (!suffix.empty()) { m_callsign.append("-"); - m_callsign.append(suffix); + m_callsign.append(suffix.substr(0U, 1U)); } m_thread = new CAPRSWriterThread(m_callsign, password, address, port);