crashhandler: renamed executable in case it's packaged in a global

application folder like /usr/bin
This commit is contained in:
itsmattkc
2020-03-02 16:07:44 +11:00
parent f6d602d8e0
commit f800ca38c3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ void crash_handler(int sig) {
output.close();
QString crash_handler_exe = QDir(qApp->applicationDirPath()).filePath(QStringLiteral("crashhandler"));
QString crash_handler_exe = QDir(qApp->applicationDirPath()).filePath(QStringLiteral("olive-crashhandler"));
QProcess::startDetached(crash_handler_exe, {log_path});
exit(1);