From e7428d5797248ff3d85f9c7c05ff297b45e8e229 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Sat, 25 May 2019 17:11:38 +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 5e2a31f60..b17f78789 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 '%2'").arg(groupModels.sizeInt()).arg(remoteAircraft.getAirlineIcaoCode().getGroupDesignator()) : + QStringLiteral("No group models found by using airline group '%1'").arg(groupModels.sizeInt()).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()); }