From ff717aab7317c23d1aa3eff42245a60e465b4b97 Mon Sep 17 00:00:00 2001 From: "waffle.lord" Date: Sun, 30 Jun 2024 11:50:12 -0400 Subject: [PATCH] fix path being url encoded --- SPTInstaller/ViewModels/InstallPathSelectionViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SPTInstaller/ViewModels/InstallPathSelectionViewModel.cs b/SPTInstaller/ViewModels/InstallPathSelectionViewModel.cs index b2c9547..fcac7c7 100644 --- a/SPTInstaller/ViewModels/InstallPathSelectionViewModel.cs +++ b/SPTInstaller/ViewModels/InstallPathSelectionViewModel.cs @@ -69,7 +69,7 @@ public class InstallPathSelectionViewModel : ViewModelBase Title = "Select a folder to install SPT into" }); - SelectedPath = selections.First().Path.AbsolutePath.Replace("/", "\\"); + SelectedPath = selections.First().Path.LocalPath; } }