This commit is contained in:
Integral 2024-10-30 02:13:06 +01:00 committed by GitHub
commit 9b3377d2d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View file

@ -658,8 +658,8 @@ fatalSecretError()
"https://github.com/Nheko-Reborn/nheko/issues"),
QMessageBox::StandardButton::Close);
QCoreApplication::exit(1);
exit(1);
QCoreApplication::exit(EXIT_FAILURE);
exit(EXIT_FAILURE);
}
static QString
@ -2691,8 +2691,8 @@ try {
"increased the capacity automatically, however you will need to "
"restart to apply this change. Nheko will now close automatically."),
QMessageBox::StandardButton::Close);
QCoreApplication::exit(1);
exit(1);
QCoreApplication::exit(EXIT_FAILURE);
exit(EXIT_FAILURE);
}
throw;

View file

@ -460,8 +460,8 @@ ChatPage::dropToLoginPage(const QString &msg)
QMessageBox::StandardButton::Close | QMessageBox::StandardButton::Ok,
QMessageBox::StandardButton::Ok);
if (btn == QMessageBox::StandardButton::Close) {
QCoreApplication::exit(1);
exit(1);
QCoreApplication::exit(EXIT_FAILURE);
exit(EXIT_FAILURE);
}
resetUI();

View file

@ -352,14 +352,14 @@ main(int argc, char *argv[])
if (!targets.isEmpty()) {
std::cerr << "Invalid log type '" << targets.first().toStdString().c_str() << "'"
<< std::endl;
std::exit(1);
std::exit(EXIT_FAILURE);
}
nhlog::init(level, path, to_stderr);
} catch (const spdlog::spdlog_ex &ex) {
std::cerr << "Log initialization failed: " << ex.what() << std::endl;
std::exit(1);
std::exit(EXIT_FAILURE);
}
auto filter = new NhekoFixupPaletteEventFilter(&app);