Fixed an uninitialized bool in the scraper.

This commit is contained in:
Leon Styhre 2023-01-23 21:45:53 +01:00
parent 7196ed9088
commit 90851befc5

View file

@ -39,6 +39,11 @@ struct ScraperSearchParams {
std::string nameOverride;
bool automaticMode;
ScraperSearchParams()
: automaticMode {false}
{
}
};
struct ScraperSearchResult {