From ef9ab303727d7e9719482f0cb53f49df4fe70fcc Mon Sep 17 00:00:00 2001 From: "Albert S." Date: Fri, 24 May 2024 09:56:04 +0200 Subject: [PATCH] shared: indexer: Add globbed pattern to ignore list We added the wrong var previously... interestingly didn't matter. --- shared/indexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/indexer.cpp b/shared/indexer.cpp index bf2e5c6..08f6094 100644 --- a/shared/indexer.cpp +++ b/shared/indexer.cpp @@ -30,7 +30,7 @@ void Indexer::beginIndexing() pattern += "/"; } pattern += "*"; - ignoreList.append(excludedPath); + ignoreList.append(pattern); } ignoreList.append(this->ignorePattern); wildcardMatcher.setPatterns(ignoreList);