From 127f1bc38c11d0ed3fe9434356c65edec462e5b8 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Thu, 30 Mar 2017 03:28:38 +0200 Subject: [PATCH] Set started flag correctly Parsing will disable starting if there is an issue with the cmd line (mostly network not available, bootstrap URL not reachable). --- src/blackcore/application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/application.cpp b/src/blackcore/application.cpp index 8dc1d14ba..8d8c69fb1 100644 --- a/src/blackcore/application.cpp +++ b/src/blackcore/application.cpp @@ -357,7 +357,7 @@ namespace BlackCore CLogMessage::preformatted(msgs); } - this->m_started = true; + this->m_started = this->m_startSetupReader; // only if requested it will be started return this->m_started; }