1
0
Fork 0

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

ycs232-kbc
Jonathan Naylor 8 years ago
parent a3fb37eec3
commit da2fdabf09

@ -44,7 +44,7 @@ m_height(0)
if (!suffix.empty()) { if (!suffix.empty()) {
m_callsign.append("-"); m_callsign.append("-");
m_callsign.append(suffix); m_callsign.append(suffix.substr(0U, 1U));
} }
m_thread = new CAPRSWriterThread(m_callsign, password, address, port); m_thread = new CAPRSWriterThread(m_callsign, password, address, port);

Loading…
Cancel
Save