diff --git a/src/downloader.cpp b/src/downloader.cpp index 0ced5f9..f177eb8 100644 --- a/src/downloader.cpp +++ b/src/downloader.cpp @@ -5278,6 +5278,11 @@ std::vector Downloader::galaxyGetOrphanedFiles(const std::vector= MSGLEVEL_VERBOSE) std::cerr << "skipped ignorelisted file " << filepath << std::endl; } + else if (Globals::globalConfig.blacklist.isBlacklisted(filepath.substr(pathlen))) + { + if (Globals::globalConfig.iMsgLevel >= MSGLEVEL_VERBOSE) + std::cerr << "skipped blacklisted file " << filepath << std::endl; + } else { filepath_vector.push_back(dir_iter->path());