shared: indexer: Add globbed pattern to ignore list

We added the wrong var previously... interestingly didn't matter.
这个提交包含在:
Albert S. 2024-05-24 09:56:04 +02:00
父节点 71f81bb682
当前提交 ef9ab30372

查看文件

@ -30,7 +30,7 @@ void Indexer::beginIndexing()
pattern += "/";
}
pattern += "*";
ignoreList.append(excludedPath);
ignoreList.append(pattern);
}
ignoreList.append(this->ignorePattern);
wildcardMatcher.setPatterns(ignoreList);