only remove keys if we have them

This commit is contained in:
Aaron Bieber 2024-08-27 18:50:10 -06:00
parent 5689216348
commit c2842975db
No known key found for this signature in database

View File

@ -268,6 +268,7 @@ func (t *Traygent) RemoveAll() error {
return errLocked
}
if len(t.keys) > 0 {
t.mu.Lock()
klen := len(t.keys)
t.keys = nil
@ -276,6 +277,7 @@ func (t *Traygent) RemoveAll() error {
go func() { t.rmChan <- "all" }()
t.mu.Unlock()
}
return nil
}