restart feature now also uses cmdline args

This commit is contained in:
Martin Rotter 2022-01-26 08:40:15 +01:00
parent 3318b96c16
commit 45381aad3a
1 changed files with 2 additions and 1 deletions

View File

@ -602,7 +602,8 @@ void Application::onAboutToQuit() {
finish();
qDebugNN << LOGSEC_CORE << "Killing local peer connection to allow another instance to start.";
if (QProcess::startDetached(QDir::toNativeSeparators(applicationFilePath()), {})) {
if (QProcess::startDetached(QDir::toNativeSeparators(applicationFilePath()),
arguments())) {
qDebugNN << LOGSEC_CORE << "New application instance was started.";
}
else {