Update Conf.cpp

Reading Descripton from section APRS is missing
This commit is contained in:
Marco Kubon 2021-07-14 14:07:16 +02:00 committed by GitHub
parent 03bcdbc7cc
commit a3d2bce8a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -978,6 +978,8 @@ bool CConf::read()
m_aprsPort = (unsigned short)::atoi(value);
else if (::strcmp(key, "Suffix") == 0)
m_aprsSuffix = value;
else if (::strcmp(key, "Description") == 0)
m_aprsDescription = value;
} else if (section == SECTION_DYNAMIC_TG_CONTROL) {
if (::strcmp(key, "Enabled") == 0)
m_dynamicTGControlEnabled = ::atoi(value) == 1;