Fix: FatalError() returns when called before Application.Run

fixes #11475
This commit is contained in:
Gunnar Beutner 2016-03-30 09:58:01 +02:00 committed by Gunnar Beutner
parent e75262af2f
commit d276c7e4c2

View File

@ -38,8 +38,10 @@ namespace Icinga
string installDir = Program.Icinga2InstallDir;
if (installDir == "")
FatalError(null, "Icinga 2 does not seem to be installed properly.");
if (installDir == "") {
FatalError(null, "Icinga 2 does not seem to be installed properly.");
return;
}
Form form;