mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2024-11-20 11:49:17 +01:00
Don't try to get extras from account page if --no-extras is used
This commit is contained in:
parent
08b0e10429
commit
34236e3774
@ -218,7 +218,7 @@ int Downloader::getGameDetails()
|
||||
game = gogAPI->getGameDetails(gameNamesIds[i].first, config.iInstallerType, config.iInstallerLanguage);
|
||||
if (!gogAPI->getError())
|
||||
{
|
||||
if (game.extras.empty())
|
||||
if (game.extras.empty() && !config.bNoExtras)
|
||||
{
|
||||
game.extras = this->getExtras(gameNamesIds[i].first, gameNamesIds[i].second);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user