From 5850d4e58c23fbe7feab21e9331082973f48372f Mon Sep 17 00:00:00 2001 From: Nodir Temirkhodjaev Date: Sat, 23 Dec 2023 13:32:23 +0300 Subject: [PATCH] UI: FortManager: exit() on error, not abort() --- src/ui/fortmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/fortmanager.cpp b/src/ui/fortmanager.cpp index 36b00ef9..d661ea3c 100644 --- a/src/ui/fortmanager.cpp +++ b/src/ui/fortmanager.cpp @@ -449,7 +449,7 @@ void FortManager::loadConf() QMessageBox::warning(nullptr, QString(), tr("Please first install Fort Firewall v%1 and save Options from it.") .arg(viaVersion)); - abort(); // Abort the program + exit(-1); // Exit the program } IoC()->load();