init irc and restart on crash is false by default
This commit is contained in:
+4
-1
@@ -80,7 +80,10 @@ void Application::initialize(Settings &settings, Paths &paths)
|
||||
assert(isAppInitialized == false);
|
||||
isAppInitialized = true;
|
||||
|
||||
//Irc::getInstance().load();
|
||||
if (getSettings()->enableExperimentalIrc)
|
||||
{
|
||||
Irc::getInstance().load();
|
||||
}
|
||||
|
||||
for (auto &singleton : this->singletons_)
|
||||
{
|
||||
|
||||
@@ -213,7 +213,7 @@ public:
|
||||
BoolSetting openLinksIncognito = {"/misc/openLinksIncognito", 0};
|
||||
|
||||
QStringSetting cachePath = {"/cache/path", ""};
|
||||
BoolSetting restartOnCrash = {"/misc/restartOnCrash", true};
|
||||
BoolSetting restartOnCrash = {"/misc/restartOnCrash", false};
|
||||
|
||||
/// Debug
|
||||
BoolSetting showUnhandledIrcMessages = {"/debug/showUnhandledIrcMessages",
|
||||
|
||||
Reference in New Issue
Block a user