From 5029b4f08ae2c16a1cb0b89edd154478347641ae Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 17 Mar 2022 11:07:45 +0100 Subject: [PATCH] Zooflow: fix pm path --- GUIs.ZooFlow/ClassModules.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUIs.ZooFlow/ClassModules.vb b/GUIs.ZooFlow/ClassModules.vb index f3137c40..a5e94225 100644 --- a/GUIs.ZooFlow/ClassModules.vb +++ b/GUIs.ZooFlow/ClassModules.vb @@ -71,8 +71,8 @@ Public Class ClassModules Private Function GetProductPathFor(pProduct As Product, pSubKey As String) As String Dim oPathFromConfig = GetProductPathFromConfig(pProduct) - If oPathFromRegistry IsNot Nothing Then - Return oPathFromRegistry + If oPathFromConfig IsNot Nothing Then + Return oPathFromConfig Else Return GetProductPathFromRegistryFor(pSubKey) End If