fix: resolve rebase conflicts, fix errcheck issues, implement FetchAndDecryptBlob

This commit is contained in:
clawbot
2026-02-19 23:44:15 -08:00
committed by user
parent 9879668c31
commit 3f834f1c9c
5 changed files with 45 additions and 16 deletions

View File

@@ -851,7 +851,7 @@ func (v *Vaultik) RemoveSnapshot(snapshotID string, opts *RemoveOptions) (*Remov
v.printfStdout("Remove snapshot '%s' from local database? [y/N] ", snapshotID)
}
var confirm string
if err := v.scanlnStdin(&confirm); err != nil {
if _, err := v.scanStdin(&confirm); err != nil {
v.printlnStdout("Cancelled")
return result, nil
}