mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Fixed an issue where MD5 hashes were calculated when using the single-game scraper
This commit is contained in:
parent
9a64649ed6
commit
65286ec027
|
|
@ -370,7 +370,7 @@ void GuiScraperSearch::search(ScraperSearchParams& params)
|
||||||
|
|
||||||
mMD5Hash = "";
|
mMD5Hash = "";
|
||||||
params.md5Hash = "";
|
params.md5Hash = "";
|
||||||
if (!Utils::FileSystem::isDirectory(params.game->getPath()))
|
if (!Utils::FileSystem::isDirectory(params.game->getPath()) && mSearchType != MANUAL_MODE)
|
||||||
params.fileSize = Utils::FileSystem::getFileSize(params.game->getPath());
|
params.fileSize = Utils::FileSystem::getFileSize(params.game->getPath());
|
||||||
|
|
||||||
// Only use MD5 file hash searching when in automatic mode.
|
// Only use MD5 file hash searching when in automatic mode.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue