From f2d987ee26ffdf7039c8e67eebbad67e25faa1ca Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Sun, 26 May 2019 00:23:45 +0200 Subject: [PATCH] fixup! Resolve airline group during reduction --- src/blackcore/aircraftmatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/aircraftmatcher.cpp b/src/blackcore/aircraftmatcher.cpp index b17f78789..5ec8d6f29 100644 --- a/src/blackcore/aircraftmatcher.cpp +++ b/src/blackcore/aircraftmatcher.cpp @@ -1383,7 +1383,7 @@ namespace BlackCore { CMatchingUtils::addLogDetailsToList(log, remoteAircraft, groupModels.isEmpty() ? - QStringLiteral("No group models found by using airline group '%1'").arg(groupModels.sizeInt()).arg(remoteAircraft.getAirlineIcaoCode().getGroupDesignator()) : + QStringLiteral("No group models found by using airline group '%1'").arg(remoteAircraft.getAirlineIcaoCode().getGroupDesignator()) : QStringLiteral("Added %1 model(s) by using airline group '%2', all members: '%3'").arg(groupModels.sizeInt()).arg(remoteAircraft.getAirlineIcaoCode().getGroupDesignator(), joinStringSet(groupModels.getAirlineVDesignators(), ", ")), getLogCategories()); }