mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Preserve Secret Service exposed group setting on merge
* Fixes #9371 - adds secret service custom data key to the list of protected custom data (will not be overwritten on merge)
This commit is contained in:
@@ -190,7 +190,7 @@ void CustomData::updateLastModified(QDateTime lastModified)
|
||||
|
||||
bool CustomData::isProtected(const QString& key) const
|
||||
{
|
||||
return key.startsWith(CustomData::BrowserKeyPrefix) || key.startsWith(CustomData::Created);
|
||||
return key.startsWith(BrowserKeyPrefix) || key == Created || key == FdoSecretsExposedGroup;
|
||||
}
|
||||
|
||||
bool CustomData::isAutoGenerated(const QString& key) const
|
||||
|
||||
Reference in New Issue
Block a user