Skip to content

Commit

Permalink
Fixed issue where "ignore" was recognized as a path in ResolvePath
Browse files Browse the repository at this point in the history
  • Loading branch information
dimiden committed Nov 16, 2024
1 parent f4ed72d commit 55265d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/config/engine/data_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ namespace cfg
const pugi::xml_node &node,
const bool resolve_path)
{
const auto ignore = GetAttribute(current_file_path, node, "ignore", resolve_path);
const auto ignore = GetAttribute(current_file_path, node, "ignore", false);

if (ignore.HasValue())
{
Expand Down

0 comments on commit 55265d5

Please sign in to comment.