diff --git a/api_response.go b/api_response.go index b295e7a..df070f5 100644 --- a/api_response.go +++ b/api_response.go @@ -555,6 +555,7 @@ 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 = true isLastPage, ok := response.Values["isLastPage"].(bool) if ok && !isLastPage { floatStart, ok := response.Values["nextPageStart"].(float64)