From c74b91713d942381574292c8f2ac5831d7bedb07 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 21 Apr 2022 15:52:49 +0200 Subject: [PATCH] Fix unhandled exception when GetDocuments query fails --- MultiTool.Form/frmExportMain.vb | 1 + 1 file changed, 1 insertion(+) diff --git a/MultiTool.Form/frmExportMain.vb b/MultiTool.Form/frmExportMain.vb index 22e458d..f5e303e 100644 --- a/MultiTool.Form/frmExportMain.vb +++ b/MultiTool.Form/frmExportMain.vb @@ -215,6 +215,7 @@ Public Class frmExportMain If oDocuments Is Nothing Then FormHelper.ShowWarning("There was an error in the Query.") + Exit Sub End If GridControlDocuments.DataSource = oDocuments