fix: prevent negative slice index when last exceeds items count

This commit is contained in:
2026-01-01 15:09:00 +01:00
parent 02405c5ce1
commit bead25aa6b
2 changed files with 14 additions and 0 deletions
+3
View File
@@ -64,6 +64,9 @@ func GetPage[T any](items []T, first *int, after *string, last *int, before *str
} else if last != nil {
tmp = *last
sIx = len(items) - tmp
if sIx < 0 {
sIx = 0
}
eIx = len(items)
}
if cursor, err := DecodeCursor(after); err == nil && cursor != "" {