favourites.go
changeset 156 70aadba26338
parent 155 0c581e0108da
child 160 9f7e683b323f
--- a/favourites.go	Sat Apr 29 12:16:16 2017 +0200
+++ b/favourites.go	Sat Apr 29 17:27:15 2017 +0200
@@ -11,6 +11,10 @@
 )
 
 // GetFavourites returns the list of the user's favourites
+// If lopt.All is true, several requests will be made until the API server
+// has nothing to return.
+// If lopt.Limit is set (and not All), several queries can be made until the
+// limit is reached.
 func (mc *Client) GetFavourites(lopt *LimitParams) ([]Status, error) {
 	var faves []Status
 	var links apiLinks
@@ -20,7 +24,7 @@
 	}
 	if lopt != nil { // Fetch more pages to reach our limit
 		var faveSlice []Status
-		for lopt.Limit > len(faves) && links.next != nil {
+		for (lopt.All || lopt.Limit > len(faves)) && links.next != nil {
 			newlopt := links.next
 			links = apiLinks{}
 			if err := mc.apiCall("favourites", rest.Get, nil, newlopt, &links, &faveSlice); err != nil {