config: allow negative to be used with tags. (#11779)

This commit is contained in:
ItsOhen 2025-09-26 18:19:53 +02:00 committed by GitHub
parent 4f3dd1ddb4
commit ae445606e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 52 additions and 1 deletions

View file

@ -1,7 +1,10 @@
#include "TagKeeper.hpp"
bool CTagKeeper::isTagged(const std::string& tag, bool strict) {
return m_tags.contains(tag) || (!strict && m_tags.contains(tag + "*"));
const bool NEGATIVE = tag.starts_with("negative");
const auto MATCH = NEGATIVE ? tag.substr(9) : tag;
const bool TAGGED = m_tags.contains(MATCH) || (!strict && m_tags.contains(MATCH + "*"));
return NEGATIVE ? !TAGGED : TAGGED;
}
bool CTagKeeper::applyTag(const std::string& tag, bool dynamic) {