Removed automatically getting list of dlc when finding id or opening file

Fixed db locking issue while getting dlc
This commit is contained in:
Jeddunk 2021-03-11 14:39:25 +01:00
parent fdc2e0277f
commit 89f43166c7
3 changed files with 5 additions and 5 deletions

View file

@ -292,7 +292,7 @@ namespace GoldbergGUI.Core.ViewModels
DllPath = dialog.FileName;
await ReadConfig().ConfigureAwait(false);
if (!GoldbergApplied) await GetListOfDlc().ConfigureAwait(false);
// if (!GoldbergApplied) await GetListOfDlc().ConfigureAwait(false);
MainWindowEnabled = true;
StatusText = "Ready.";
}
@ -349,7 +349,7 @@ namespace GoldbergGUI.Core.ViewModels
await FindIdInList(steamApps).ConfigureAwait(false);
}
}
await GetListOfDlc().ConfigureAwait(false);
//await GetListOfDlc().ConfigureAwait(false);
MainWindowEnabled = true;
StatusText = "Ready.";
}