aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.qml b/main.qml
index 82373963..42452c64 100644
--- a/main.qml
+++ b/main.qml
@@ -1938,12 +1938,13 @@ ApplicationWindow {
return;
}
+ const simpleModeFlags = "--enable-dns-blocklist --out-peers 16";
if (appWindow.daemonRunning) {
appWindow.stopDaemon(function() {
- appWindow.startDaemon("")
+ appWindow.startDaemon(simpleModeFlags)
});
} else {
- appWindow.startDaemon("");
+ appWindow.startDaemon(simpleModeFlags);
}
}