mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:15:52 -04:00
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:
parent
5e38faa09d
commit
9b5ed176cd
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user