mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
init irc and restart on crash is false by default
This commit is contained in:
parent
375aa221eb
commit
7fa2c7b4a5
2 changed files with 5 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue