Skip to content

Commit

Permalink
Prompt to migrate KeePassHTTP settings only if Browser Integration is…
Browse files Browse the repository at this point in the history
… enabled
  • Loading branch information
varjolintu authored and droidmonkey committed Jun 30, 2019
1 parent 12f42a5 commit 32e62fa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/browser/BrowserService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,10 @@ int BrowserService::moveKeysToCustomData(Entry* entry, const QSharedPointer<Data

bool BrowserService::checkLegacySettings()
{
if (!browserSettings()->isEnabled()) {
return false;
}

auto db = getDatabase();
if (!db) {
return false;
Expand Down

0 comments on commit 32e62fa

Please sign in to comment.