diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG
index 64e2c93d3..fd4d35f9a 100644
--- a/resources/text/CHANGELOG
+++ b/resources/text/CHANGELOG
@@ -7,6 +7,7 @@ Added:
Fixed:
+- Fixed restarting issues. (issue #109)
- Target directory settings is now used for all kinds of downloading + when prompt for each download destination is set, then previously used folder is saved. (issue #108)
- Fixed solarized skin. (issue #111)
- Keyboard shorcuts and toolbar editors now have alphabetically sorted actions. Toolbar editor switched from drag/drop to buttons. You can use CTRL+UP/DOWN arrow to move buttons in toolbar editor or double-click them to add/remove them. (issue
diff --git a/src/miscellaneous/application.cpp b/src/miscellaneous/application.cpp
index b560731d8..256aaba4b 100755
--- a/src/miscellaneous/application.cpp
+++ b/src/miscellaneous/application.cpp
@@ -221,7 +221,7 @@ void Application::onAboutToQuit() {
finish();
qDebug("Killing local peer connection to allow another instance to start.");
- if (QProcess::startDetached(applicationFilePath())) {
+ if (QProcess::startDetached(QString("\"") + QDir::toNativeSeparators(applicationFilePath()) + QString("\""))) {
qDebug("New application instance was started.");
}
else {