mirror of https://github.com/muesli/mastotool
Adapt to upstream API changes in go-mastodon
This commit is contained in:
parent
637053214c
commit
90dadbdb94
4
main.go
4
main.go
|
@ -122,6 +122,8 @@ func searchToots() error {
|
||||||
|
|
||||||
var pg mastodon.Pagination
|
var pg mastodon.Pagination
|
||||||
for {
|
for {
|
||||||
|
pg.SinceID = ""
|
||||||
|
pg.MinID = ""
|
||||||
pg.Limit = 40
|
pg.Limit = 40
|
||||||
statuses, err := client.GetAccountStatuses(context.Background(), self.ID, &pg)
|
statuses, err := client.GetAccountStatuses(context.Background(), self.ID, &pg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -174,6 +176,8 @@ func gatherStats() error {
|
||||||
|
|
||||||
var pg mastodon.Pagination
|
var pg mastodon.Pagination
|
||||||
for {
|
for {
|
||||||
|
pg.SinceID = ""
|
||||||
|
pg.MinID = ""
|
||||||
pg.Limit = 40
|
pg.Limit = 40
|
||||||
statuses, err := client.GetAccountStatuses(context.Background(), self.ID, &pg)
|
statuses, err := client.GetAccountStatuses(context.Background(), self.ID, &pg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue