Add notification on unlock

This commit is contained in:
Bernd Schoolmann 2024-01-04 22:41:53 +01:00
parent 64286ce759
commit 6631979e2f
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -131,6 +131,7 @@ func (c *Config) Unlock(password string) bool {
keyBuffer := NewBufferFromBytes(key, c.useMemguard)
c.key = &keyBuffer
notify.Notify("Goldwarden", "Vault Unlocked", "", func() {})
return true
}