------------------------------------------------------------------------
If no aircraft is selected in the launcher, the routine
AircraftItemModel::indexOfAircraftURI is called with an empty QUri,
triggering a warning in the terminal.
This commit removes such warning by ignoring QUris with empty schemes
(the routine still returns an invalid index).
}
} // of linear package scan
}
+ } else if (uri.scheme() == "") {
+ // Empty URI scheme (no selection), nothing to do
} else {
qWarning() << "Unknown aircraft URI scheme" << uri << uri.scheme();
}