We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a4daf commit 7b310cdCopy full SHA for 7b310cd
src/FirmwareChecker.cxx
@@ -73,7 +73,13 @@ FirmwareChecker::FirmwareChecker() : mCompatibleFirmwareList({
73
74
// if the parsed list is not empty update the compatible fimrware list
75
if (!parsedList.empty()) {
76
- mCompatibleFirmwareList = parsedList;
+ // append existing list...
77
+ for (const auto& p: parsedList) {
78
+ if ((p.first.length()) && (p.second.length())) {
79
+ mCompatibleFirmwareList.insert(p);
80
+ }
81
82
+ //mCompatibleFirmwareList = parsedList;
83
}
84
85
0 commit comments