mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-01-08 17:40:03 +01:00
Only append the first character of the suffix for aprs.fi.
This commit is contained in:
parent
a3fb37eec3
commit
da2fdabf09
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue