From c6e89f938dc9aae768be04e27a4b0d22ef8b75ec Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Tue, 24 Jan 2017 03:19:27 +0100 Subject: [PATCH] Do not enable KeePassHTTP by default --- src/http/HttpSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/HttpSettings.cpp b/src/http/HttpSettings.cpp index c935ba92..e51f87cf 100644 --- a/src/http/HttpSettings.cpp +++ b/src/http/HttpSettings.cpp @@ -18,7 +18,7 @@ PasswordGenerator HttpSettings::m_generator; bool HttpSettings::isEnabled() { - return config()->get("Http/Enabled", true).toBool(); + return config()->get("Http/Enabled", false).toBool(); } void HttpSettings::setEnabled(bool enabled)