1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

Fix name decode in Static Data Reports

This commit is contained in:
Jon Beniston 2021-05-11 10:56:06 +01:00
parent 6f291ac399
commit 55c20c3f6e

View File

@ -687,12 +687,12 @@ AISStaticDataReport::AISStaticDataReport(QByteArray ba) :
m_partNumber = ba[4] & 0x3;
if (m_partNumber == 0)
{
m_name = AISMessage::getString(ba, 5, 0, 20);
m_name = AISMessage::getString(ba, 5, 8, 20);
}
else if (m_partNumber == 1)
{
m_type = ba[5] & 0xff;
m_vendorId = AISMessage::getString(ba, 6, 0, 7);
m_vendorId = AISMessage::getString(ba, 6, 8, 7);
m_callsign = AISMessage::getString(ba, 11, 6, 7);
}
}