This commit is contained in:
Jonathan Jenne
2021-04-26 16:43:42 +02:00
parent 2bf8a18277
commit 817347af6f
4 changed files with 15 additions and 6 deletions

View File

@@ -287,9 +287,9 @@ Public Class frmFlowForm
Dim oDT As DataTable = AppServerOrDB.GetDatatable("DD_ECM", oSql, "TBGI_FOLDERWATCH_USER", $"FOLDER_TYPE = 'DEFAULT' AND USER_ID = {My.Application.User.UserId}")
If oDT.Rows.Count = 0 Then
Throw New ApplicationException("No Default Path configured for User!")
'Logger.Warn("No Default Path configured for User. Skipping.")
'Exit Sub
'Throw New ApplicationException("No Default Path configured for User!")
Logger.Warn("No Default Path configured for User. Skipping.")
Exit Sub
End If
Dim oFolderWatchPath = oDT.Rows.Item(0).Item("FOLDER_PATH")