Changed the default number of scraper retries on error from 5 to 3.

This commit is contained in:
Leon Styhre 2023-02-21 18:44:31 +01:00
parent 3869a51e9c
commit 4159fc8b9a

View file

@ -135,7 +135,7 @@ void Settings::setDefaults()
mStringMap["ScraperRegion"] = {"eu", "eu"};
mStringMap["ScraperLanguage"] = {"en", "en"};
mIntMap["ScraperRetryOnErrorCount"] = {5, 5};
mIntMap["ScraperRetryOnErrorCount"] = {3, 3};
mIntMap["ScraperRetryOnErrorTimer"] = {3, 3};
mBoolMap["ScraperOverwriteData"] = {true, true};
mBoolMap["ScraperHaltOnInvalidMedia"] = {true, true};