diff --git a/plugins/feature/ais/aisgui.cpp b/plugins/feature/ais/aisgui.cpp index adf368e76..33498620f 100644 --- a/plugins/feature/ais/aisgui.cpp +++ b/plugins/feature/ais/aisgui.cpp @@ -450,6 +450,13 @@ void AISGUI::updateVessels(AISMessage *ais) statusItem->setText(AISPositionReport::getStatusString(lrpr->m_status)); } } + if (ais->m_id == 19) + { + AISExtendedClassBPositionReport *ext = dynamic_cast(ais); + if (ext) { + shipTypeItem->setText(AISMessage::typeToString(ext->m_type)); + } + } if (ais->m_id == 24) { AISStaticDataReport *dr = dynamic_cast(ais);