Skip to content

Commit d39d4b7

Browse files
authored
Merge pull request #2877 from erri120/fix/2463
Fix suggested folder name in Advanced Installer
2 parents a044083 + dcdf8a7 commit d39d4b7

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

src/Games/NexusMods.Games.AdvancedInstaller.UI/Content/Right/SelectLocation/SelectLocationViewModel.cs

+10-8
Original file line numberDiff line numberDiff line change
@@ -64,21 +64,23 @@ private static IEnumerable<ISuggestedEntryViewModel> CreateSuggestedEntries(IGam
6464
foreach (var (locationId, fullPath) in register.GetTopLevelLocations())
6565
{
6666
suggestedEntries.Add(new SuggestedEntryViewModel(
67-
Guid.NewGuid(),
68-
fullPath,
69-
locationId,
70-
new GamePath(locationId, RelativePath.Empty)));
67+
id: Guid.NewGuid(),
68+
absolutePath: fullPath,
69+
associatedLocation: locationId,
70+
relativeToTopLevelLocation: new GamePath(locationId, RelativePath.Empty)
71+
));
7172

7273
// Add nested locations to suggested entries.
7374
foreach (var nestedLocation in register.GetNestedLocations(locationId))
7475
{
7576
var nestedFullPath = register.GetResolvedPath(nestedLocation);
7677
var relativePath = nestedFullPath.RelativeTo(fullPath);
7778
suggestedEntries.Add(new SuggestedEntryViewModel(
78-
Guid.NewGuid(),
79-
nestedFullPath,
80-
nestedLocation,
81-
new GamePath(locationId, relativePath)));
79+
id: Guid.NewGuid(),
80+
absolutePath: nestedFullPath,
81+
associatedLocation: nestedLocation,
82+
relativeToTopLevelLocation: new GamePath(locationId, relativePath)
83+
));
8284
}
8385
}
8486

src/Games/NexusMods.Games.AdvancedInstaller.UI/Content/Right/SelectLocation/SuggestedEntry/SuggestedEntryViewModel.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ public SuggestedEntryViewModel(
3838
AssociatedLocation = associatedLocation;
3939
RelativeToTopLevelLocation = relativeToTopLevelLocation;
4040

41-
Title = title == string.Empty ? associatedLocation.Value.ToString() : title;
42-
Subtitle = subtitle == string.Empty ? AbsolutePath.ToString() : subtitle;
41+
Title = string.IsNullOrEmpty(title) ? associatedLocation.ToString() : title;
42+
Subtitle = string.IsNullOrEmpty(subtitle) ? AbsolutePath.ToString() : subtitle;
4343

4444
CreateMappingCommand = ReactiveCommand.Create(() => { });
4545
}

0 commit comments

Comments
 (0)