diff --git a/plugins/feature/satellitetracker/satelliteselectiondialog.cpp b/plugins/feature/satellitetracker/satelliteselectiondialog.cpp index 3184be204..73751a8f2 100644 --- a/plugins/feature/satellitetracker/satelliteselectiondialog.cpp +++ b/plugins/feature/satellitetracker/satelliteselectiondialog.cpp @@ -197,6 +197,13 @@ void SatelliteSelectionDialog::displaySatInfo(const QString& name) { SatNogsSatellite *sat = m_satellites[name]; m_satInfo = sat; + if (!sat) + { + // Might not be null if satellite name entered via API + ui->satInfo->setText(""); + ui->satImage->setPixmap(QPixmap()); + return; + } QStringList info; info.append(QString("Name: %1").arg(sat->m_name)); if (sat->m_names.size() > 0)