mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Add missing check for group database.
This commit is contained in:
parent
82f1cbb3c9
commit
cc426d2453
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ void Entry::setGroup(Group* group)
|
||||||
{
|
{
|
||||||
if (m_group) {
|
if (m_group) {
|
||||||
m_group->removeEntry(this);
|
m_group->removeEntry(this);
|
||||||
if (m_group->database() != group->database()) {
|
if (m_group->database() != group->database() && m_group->database()) {
|
||||||
m_group->database()->addDeletedObject(m_uuid);
|
m_group->database()->addDeletedObject(m_uuid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue