mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Corrected use of canonicalfile info in autoopen code
This commit is contained in:
parent
a80d1bbd2b
commit
36e5377e6a
1 changed files with 1 additions and 2 deletions
|
@ -543,8 +543,7 @@ void DatabaseTabWidget::updateTabNameFromDbWidgetSender()
|
||||||
Group *autoload = db->rootGroup()->findChildByName("AutoOpen");
|
Group *autoload = db->rootGroup()->findChildByName("AutoOpen");
|
||||||
if (autoload) {
|
if (autoload) {
|
||||||
const DatabaseManagerStruct& dbStruct = m_dbList.value(db);
|
const DatabaseManagerStruct& dbStruct = m_dbList.value(db);
|
||||||
QFileInfo dbpath(dbStruct.canonicalFilePath);
|
QDir dbFolder(dbStruct.fileInfo.canonicalPath());
|
||||||
QDir dbFolder(dbpath.canonicalPath());
|
|
||||||
for (auto entry : autoload->entries()) {
|
for (auto entry : autoload->entries()) {
|
||||||
if (entry->url().isEmpty() || entry->password().isEmpty()) {
|
if (entry->url().isEmpty() || entry->password().isEmpty()) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue