Skip to content

Commit

Permalink
mark the database as modified when a new connection is made.
Browse files Browse the repository at this point in the history
fixes #85
  • Loading branch information
smorks committed Feb 16, 2022
1 parent edcc24e commit c60c9f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ create-plgx.bat
.vs/
/packages/
/KeePassNatMsg/lib/KeePass.exe
build/
build/
.idea/
*.DotSettings.user
3 changes: 2 additions & 1 deletion KeePassNatMsg/KeePassNatMsgExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public sealed class KeePassNatMsgExt : Plugin, IDisposable
0x34, 0x69, 0x7a, 0x40, 0x8a, 0x5b, 0x41, 0xc0,
0x9f, 0x36, 0x89, 0x7d, 0x62, 0x3e, 0xcb, 0x31
};

/// <summary>
/// an arbitrarily generated uuid for the keepassnatmsg new password group
/// </summary>
Expand Down Expand Up @@ -417,6 +417,7 @@ internal string ShowConfirmAssociationDialog(string key)
{
db.CustomData.Set(customKey, key);
id = f.KeyId;
UpdateUI(null);
}
}
});
Expand Down

0 comments on commit c60c9f1

Please sign in to comment.