fix path being url encoded

This commit is contained in:
IsWaffle 2024-06-30 11:50:12 -04:00
parent 0f1d4653a2
commit ff717aab73

View File

@ -69,7 +69,7 @@ public class InstallPathSelectionViewModel : ViewModelBase
Title = "Select a folder to install SPT into" Title = "Select a folder to install SPT into"
}); });
SelectedPath = selections.First().Path.AbsolutePath.Replace("/", "\\"); SelectedPath = selections.First().Path.LocalPath;
} }
} }