1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-01-05 15:58:50 -05:00

ADSB: Fix ilnk to opensky-network. #2564

This commit is contained in:
Jon Beniston 2025-11-24 13:30:07 +00:00
parent 175e7c60b2
commit dc6bda9824

View File

@ -5573,7 +5573,7 @@ void ADSBDemodGUI::adsbData_customContextMenuRequested(QPoint pos)
QAction* viewOpenSkyAction = new QAction("View aircraft on opensky-network.org...", tableContextMenu);
connect(viewOpenSkyAction, &QAction::triggered, this, [icaoHex]()->void {
QDesktopServices::openUrl(QUrl(QString("https://old.opensky-network.org/aircraft-profile?icao24=%1").arg(icaoHex)));
QDesktopServices::openUrl(QUrl(QString("https://map.opensky-network.org/?icao=%1").arg(icaoHex)));
});
tableContextMenu->addAction(viewOpenSkyAction);