mirror of https://github.com/Icinga/icinga2.git
Fix: FatalError() returns when called before Application.Run
fixes #11475
This commit is contained in:
parent
eb7887dad0
commit
2ffbd1a161
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue