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

@@ -167,7 +167,7 @@ func (c *blobDiskCache) ReadAt(key string, offset, length int64) ([]byte, error)
if err != nil {
return nil, err
}
defer f.Close()
defer func() { _ = f.Close() }()
buf := make([]byte, length)
if _, err := f.ReadAt(buf, offset); err != nil {