timelines.go
changeset 149 5f922977d7c7
parent 138 23d3a518d0ad
child 155 0c581e0108da
--- a/timelines.go	Fri Apr 28 13:28:16 2017 +0200
+++ b/timelines.go	Fri Apr 28 15:43:11 2017 +0200
@@ -17,7 +17,7 @@
 // timeline can be "home", "public", or a hashtag (use ":hashtag" or "#hashtag")
 // For the public timelines, you can set 'local' to true to get only the
 // local instance.
-func (mc *Client) GetTimelines(timeline string, local bool) ([]Status, error) {
+func (mc *Client) GetTimelines(timeline string, local bool, lopt *LimitParams) ([]Status, error) {
 	var endPoint string
 
 	switch {
@@ -39,7 +39,7 @@
 	}
 
 	var tl []Status
-	if err := mc.apiCall(endPoint, rest.Get, params, &tl); err != nil {
+	if err := mc.apiCall(endPoint, rest.Get, params, lopt, &tl); err != nil {
 		return nil, err
 	}
 	return tl, nil