1
0
mirror of synced 2024-11-12 02:00:52 +01:00

fix: Advanced data information not showing up correctly

This commit is contained in:
WerWolv 2024-03-13 22:39:21 +01:00
parent 28ba34f1bf
commit 0d880babfb

View File

@ -57,7 +57,7 @@ namespace hex::plugin::yara {
}
void drawContent() override {
const auto empty = std::ranges::any_of(m_categories, [](const auto &entry) {
const auto empty = !std::ranges::any_of(m_categories, [](const auto &entry) {
const auto &[categoryName, category] = entry;
return !category.matchedRules.empty();
});