From 66003aee94f9f6cd837690c95507ad1157bbf8ec Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Wed, 14 Sep 2022 14:25:12 +0200 Subject: [PATCH] Common: Notification Start up fix --- GUIs.Common/frmNotification_Startup.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUIs.Common/frmNotification_Startup.vb b/GUIs.Common/frmNotification_Startup.vb index 21bae37c..fd7d00c2 100644 --- a/GUIs.Common/frmNotification_Startup.vb +++ b/GUIs.Common/frmNotification_Startup.vb @@ -178,7 +178,7 @@ Public Class frmNotification_Startup Private Function GetOperationMode() As OperationMode Dim oOperationMode As OperationMode - If Environment.Service.Client.IsOnline AndAlso Environment.Service.Address <> String.Empty Then + If Environment.Service.Client?.IsOnline AndAlso Environment.Service.Address <> String.Empty Then oOperationMode = OperationMode.WithAppServer Else oOperationMode = OperationMode.NoAppServer