1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-07 21:37:04 +09:00

GO-5397 fix err handle

This commit is contained in:
Roman Khafizianov 2025-04-02 18:55:04 +02:00
parent 594c45328d
commit 10d1267777
No known key found for this signature in database
GPG key ID: F07A7D55A2684852

View file

@ -77,6 +77,7 @@ func recursiveCleanup(path string, cutoff time.Time) {
info, err := entry.Info()
if err != nil {
log.Warnf("tmp cleanup entry: %v", err)
continue
}
if entry.IsDir() {
recursiveCleanup(fullEntryPath, cutoff)