Sat Tracker: Prevent crash if satellite not found.

This commit is contained in:
srcejon 2024-03-28 15:28:02 +00:00
parent 198b971275
commit 13ba98eb8a
1 changed files with 7 additions and 0 deletions

View File

@ -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)