From 4582884a0d866cd7e5a78d37d041d1dcda477ea3 Mon Sep 17 00:00:00 2001 From: Sude Date: Thu, 24 Jul 2014 18:07:14 +0300 Subject: [PATCH] Fix blacklisted file causing downloader to skip a game Incorrect check for blacklisted file caused the downloader to skip a game instead of skipping just one file --- src/downloader.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/downloader.cpp b/src/downloader.cpp index 2939a2d..5014bb6 100644 --- a/src/downloader.cpp +++ b/src/downloader.cpp @@ -637,12 +637,6 @@ void Downloader::download() { // Take path from installer path because for some games the base directory for installer/extra path is not "gamename" std::string filepath = Util::makeFilepath(config.sDirectory, games[i].installers[0].path, games[i].gamename); - if (config.blacklist.isBlacklisted(games[i].installers[0].path, games[i].gamename)) - { - if (config.bVerbose) - std::cout << "skipped blacklisted file " << filepath << std::endl; - continue; - } // Get base directory from filepath boost::match_results what;