madon.go
changeset 159 408aa794d9bb
parent 158 083d33bb419b
child 162 68df3a01e1a7
--- a/madon.go	Sun Apr 30 20:42:02 2017 +0200
+++ b/madon.go	Sun Apr 30 20:43:17 2017 +0200
@@ -13,9 +13,9 @@
 
 // LimitParams contains common limit/paging options for the Mastodon REST API
 type LimitParams struct {
-	Limit          int  // Number of items per query
-	SinceID, MaxID int  // Boundaries
-	All            bool // Get as many items as possible
+	Limit          int   // Number of items per query
+	SinceID, MaxID int64 // Boundaries
+	All            bool  // Get as many items as possible
 }
 
 // apiCallParams is a map with the parameters for an API call