Only append the first character of the suffix for aprs.fi.

This commit is contained in:
Jonathan Naylor 2016-07-04 17:55:14 +01:00
parent a3fb37eec3
commit da2fdabf09

View file

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