HOTFIX: fix "Could not find part of path" bug related to the profiles folder

This commit is contained in:
Timothy Baldridge 2022-09-27 15:42:36 -06:00
parent cfb928bfce
commit d3401f7778
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
### Changelog
#### Version - 3.0.1.7 - 9/27/2022
* HOTFIX: fix "Could not find part of path" bug related to the profiles folder
#### Version - 3.0.1.6 - 9/26/2022
* Fix Cyberpunk 2077 GoG recognition
* Add a CLI command `list-games` to list all games recognized by WJ and their versions/locations

View File

@ -173,7 +173,7 @@ public class StandardInstaller : AInstaller<StandardInstaller>
var profileDir = _configuration.Install.Combine("profiles");
if (!profileDir.DirectoryExists()) return;
profileDir.Combine("profiles")
profileDir
.EnumerateFiles()
.Where(f => f.FileName == Consts.SettingsIni)
.Do(f =>