Fix not to declare Pagination every time

pull/54/head
178inaba 2017-05-08 11:06:01 +09:00
parent f283f05671
commit 9e07d8951e
1 changed files with 2 additions and 3 deletions

View File

@ -17,10 +17,9 @@ func cmdFollowers(c *cli.Context) error {
if err != nil {
return err
}
var maxID int64
var followers []*mastodon.Account
var pg mastodon.Pagination
for {
pg := mastodon.Pagination{MaxID: maxID}
fs, err := client.GetAccountFollowers(context.Background(), account.ID, &pg)
if err != nil {
return err
@ -29,7 +28,7 @@ func cmdFollowers(c *cli.Context) error {
if pg.MaxID == 0 {
break
}
maxID = pg.MaxID
pg.SinceID = 0
time.Sleep(10 * time.Second)
}
s := newScreen(config)