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");
                     }