core: don't populate linesContainingVar on dynamic requests

This commit is contained in:
Vaxry 2024-08-20 19:16:02 +02:00
parent adbefbf496
commit 16e5c9465f
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ CParseResult CConfig::parseLine(std::string line, bool dynamic) {
if (RHSIT == std::string::npos && LHSIT == std::string::npos)
continue;
else
else if (!dynamic)
var.linesContainingVar.push_back({line, impl->categories, impl->currentSpecialCategory});
anyMatch = true;