Fix: checking unnormalized path when checking for profile path

This commit is contained in:
Jonathan Jenne 2022-02-21 11:22:45 +01:00
parent f9a15191da
commit 7c91662e20

View File

@ -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