Fix follower pagination in cmd/mstdn

Make sure to reset Pagination's MinID on every iteration, as
discussed in #99.
pull/118/head
Christian Muehlhaeuser 2019-08-08 06:35:37 +02:00 committed by mattn
parent c9e2d23df3
commit 25da74b864
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ func cmdFollowers(c *cli.Context) error {
break
}
pg.SinceID = ""
pg.MinID = ""
time.Sleep(10 * time.Second)
}
s := newScreen(config)