From 7c91662e204407861eb24353a021b80e39952213 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Mon, 21 Feb 2022 11:22:45 +0100 Subject: [PATCH] Fix: checking unnormalized path when checking for profile path --- Global_Indexer/frmIndex.vb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb index 29fad4b..c297a87 100644 --- a/Global_Indexer/frmIndex.vb +++ b/Global_Indexer/frmIndex.vb @@ -1770,7 +1770,10 @@ Public Class frmIndex Dim oNormalized As String = WINDREAM.GetNormalizedPath(oDestination) Dim oNewDestination = Path.Combine(WINDREAM.ClientBasePath, oNormalized) - If Directory.Exists(oDestination) = False Then + LOGGER.Debug("Path from Database is [{0}]", oDestination) + LOGGER.Debug("Checking for path [{0}]", oNewDestination) + + If Directory.Exists(oNewDestination) = False Then Dim oMessage As String If USER_LANGUAGE = "de-DE" Then