Only append the first character of the suffix for aprs.fi.
This commit is contained in:
parent
a3fb37eec3
commit
da2fdabf09
1 changed files with 1 additions and 1 deletions
|
@ -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