Small browser fixes for 2.4.0 release

This commit is contained in:
varjolintu 2019-03-04 11:23:42 +02:00 committed by Jonathan White
parent f09f00a6b8
commit f997e86869
2 changed files with 2 additions and 2 deletions

View File

@ -630,7 +630,7 @@ QList<Entry*> BrowserService::sortEntries(QList<Entry*>& pwEntries, const QStrin
{
QUrl url(entryUrl);
if (url.scheme().isEmpty()) {
url.setScheme("http");
url.setScheme("https");
}
const QString submitUrl = url.toString(QUrl::StripTrailingSlash);

View File

@ -186,7 +186,7 @@ void BrowserSettings::setCustomProxyLocation(const QString& location)
bool BrowserSettings::updateBinaryPath()
{
return config()->get("Browser/UpdateBinaryPath", false).toBool();
return config()->get("Browser/UpdateBinaryPath", true).toBool();
}
void BrowserSettings::setUpdateBinaryPath(bool enabled)