mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Download favicon in the background after credential add
This commit is contained in:
parent
d16fc2d62a
commit
12d16f67ae
7 changed files with 53 additions and 10 deletions
|
@ -494,6 +494,7 @@ void BrowserService::addEntry(const QString& dbid,
|
|||
const QString& realm,
|
||||
const QString& group,
|
||||
const QString& groupUuid,
|
||||
const bool downloadFavicon,
|
||||
const QSharedPointer<Database>& selectedDb)
|
||||
{
|
||||
// TODO: select database based on this key id
|
||||
|
@ -537,6 +538,10 @@ void BrowserService::addEntry(const QString& dbid,
|
|||
config.setRealm(realm);
|
||||
}
|
||||
config.save(entry);
|
||||
|
||||
if (downloadFavicon && m_currentDatabaseWidget) {
|
||||
m_currentDatabaseWidget->downloadFaviconInBackground(entry);
|
||||
}
|
||||
}
|
||||
|
||||
bool BrowserService::updateEntry(const QString& dbid,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue