mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-07-09 07:13:43 -05:00
Better checks on HasNextPage
This commit is contained in:
@ -555,9 +555,12 @@ func NewRawAPIResponse(r *http.Response) (*APIResponse, error) {
|
||||
|
||||
// HasNextPage returns if response is paged and has next page and where it does start
|
||||
func HasNextPage(response *APIResponse) (isLastPage bool, nextPageStart int) {
|
||||
isLastPage = response.Values["isLastPage"].(bool)
|
||||
if !isLastPage {
|
||||
nextPageStart = int(response.Values["nextPageStart"].(float64))
|
||||
isLastPage, ok := response.Values["isLastPage"].(bool)
|
||||
if ok && !isLastPage {
|
||||
floatStart, ok := response.Values["nextPageStart"].(float64)
|
||||
if ok {
|
||||
nextPageStart = int(floatStart)
|
||||
}
|
||||
}
|
||||
return !isLastPage, nextPageStart
|
||||
}
|
||||
|
Reference in New Issue
Block a user