From cc5aaa3c6a5a53de689513332e97b479ef2de540 Mon Sep 17 00:00:00 2001 From: Unnoen Date: Thu, 4 Feb 2021 17:39:52 +1100 Subject: [PATCH] Quick fix download path breaking on default. --- Wabbajack/View Models/Installers/MO2InstallerVM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack/View Models/Installers/MO2InstallerVM.cs b/Wabbajack/View Models/Installers/MO2InstallerVM.cs index 2499f462..4c61e179 100644 --- a/Wabbajack/View Models/Installers/MO2InstallerVM.cs +++ b/Wabbajack/View Models/Installers/MO2InstallerVM.cs @@ -93,7 +93,7 @@ namespace Wabbajack .Skip(1) // Don't do it initially .Subscribe(downloadPath => { - if (downloadPath == Location.TargetPath) + if (downloadPath != default && downloadPath == Location.TargetPath) { DownloadLocation.TargetPath = Location.TargetPath.Combine("downloads"); }