this repo has no description
0
fork

Configure Feed

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

ignore errors when cursor isn't provided

+1 -1
+1 -1
feedgenerator.go
··· 29 29 } 30 30 31 31 cursorInt, err := strconv.Atoi(cursor) 32 - if err != nil { 32 + if err != nil && cursor != "" { 33 33 slog.Error("convert cursor to int", "error", err, "cursor value", cursor) 34 34 } 35 35 if cursorInt == 0 {