From 93b745063f0e4a4ad90b237bd400f795df3dcb91 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 16 Aug 2023 19:09:57 +0200 Subject: [PATCH] Increased the default value for the ScraperSearchFileHashMaxSize setting from 128 to 192 MiB --- es-core/src/Settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/Settings.cpp b/es-core/src/Settings.cpp index 6a4cf2547..8a37cc86e 100644 --- a/es-core/src/Settings.cpp +++ b/es-core/src/Settings.cpp @@ -142,7 +142,7 @@ void Settings::setDefaults() mStringMap["ScraperLanguage"] = {"en", "en"}; mIntMap["ScraperRetryOnErrorCount"] = {3, 3}; mIntMap["ScraperRetryOnErrorTimer"] = {3, 3}; - mIntMap["ScraperSearchFileHashMaxSize"] = {128, 128}; + mIntMap["ScraperSearchFileHashMaxSize"] = {192, 192}; mBoolMap["ScraperOverwriteData"] = {true, true}; mBoolMap["ScraperHaltOnInvalidMedia"] = {true, true}; mBoolMap["ScraperSearchFileHash"] = {true, true};