Skip to content

Commit

Permalink
core: don't populate linesContainingVar on dynamic requests
Browse files Browse the repository at this point in the history
  • Loading branch information
vaxerski committed Aug 20, 2024
1 parent adbefbf commit 16e5c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 16e5c94

Please sign in to comment.