Improve proxy path handling for the browser plugin

If "Update KeePassXC binary path automatically to native messaging
scripts on startup" is not selected (default behavior), native messaging
host JSON contains wrong path " ".
This commit is contained in:
Yen Chi Hsuan 2018-01-06 18:22:10 +08:00
parent 5e38faa09d
commit 9b5ed176cd

View File

@ -156,7 +156,10 @@ void BrowserSettings::setUseCustomProxy(bool enabled)
QString BrowserSettings::customProxyLocation()
{
return config()->get("Browser/CustomProxyLocation", " ").toString();
if (!useCustomProxy()) {
return QString();
}
return config()->get("Browser/CustomProxyLocation", "").toString();
}
void BrowserSettings::setCustomProxyLocation(QString location)