this repo has no description

err is guarenteed to not be nil at this point

+1 -1
+1 -1
appview/podcastindex/cache.go
··· 30 30 if err == nil { 31 31 return json.RawMessage(cached.Response), nil 32 32 } 33 - if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) { 33 + if !errors.Is(err, gorm.ErrRecordNotFound) { 34 34 return nil, err 35 35 } 36 36