From 5b0aa3ee97f4de6274a21e6a5f70890ca1099202 Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Wed, 22 Jul 2026 13:59:55 +0100 Subject: [PATCH] When upgrading from the pre-fix installer, it would dump everything into the C:\ root as the UI never executes to set the value for the MSI_INSTALLATIONDIRECTORY, and the custom action doesn't run on upgrade as we should be reading from the registry in that situation This will force the customaction to run when the path is the confusingly named TARGETDIR (which is C:\ in 99% of cases). All other properties when upgrading from the pre-fix to the fix will be reset to the default values as well; which was the same as the previous behaviour anyway. --- release/wix/navidrome.wxs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/wix/navidrome.wxs b/release/wix/navidrome.wxs index 3ea08ec27..8c20e109d 100644 --- a/release/wix/navidrome.wxs +++ b/release/wix/navidrome.wxs @@ -98,7 +98,7 @@ - Not Installed AND NOT WIX_UPGRADE_DETECTED + (Not Installed AND NOT WIX_UPGRADE_DETECTED) OR (MSI_INSTALLATIONDIRECTORY=TARGETDIR) Not Installed AND NOT WIX_UPGRADE_DETECTED