tangled
alpha
login
or
join now
sparrowtek.com
/
effem-AppView
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
err is guarenteed to not be nil at this point
radmakr.com
3 weeks ago
1c7b1d52
35135978
+1
-1
1 changed file
expand all
collapse all
unified
split
appview
podcastindex
cache.go
+1
-1
appview/podcastindex/cache.go
···
30
30
if err == nil {
31
31
return json.RawMessage(cached.Response), nil
32
32
}
33
33
-
if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) {
33
33
+
if !errors.Is(err, gorm.ErrRecordNotFound) {
34
34
return nil, err
35
35
}
36
36