this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: actually catch errors

+1 -1
+1 -1
cmd/bsky-activity/main.go
··· 95 95 for k, _ := range AtprotoAllowlist { 96 96 if strings.HasPrefix(collection, k) { 97 97 ckey := strings.ReplaceAll(k, ".", "_") 98 - if err := pipe.Incr(ctx, "dev.edavis.atproto.collection."+ckey); err != nil { 98 + if err := pipe.Incr(ctx, "dev.edavis.atproto.collection."+ckey).Err(); err != nil { 99 99 log.Printf("failed incrementing an atproto collection: %v\n", err) 100 100 } 101 101 }