From 5fd7d16157835f504da1c997e260a29f68dad97b Mon Sep 17 00:00:00 2001 From: 178inaba <178inaba@users.noreply.github.com> Date: Thu, 14 Feb 2019 22:54:45 +0900 Subject: [PATCH] Fix followers command Set empty for SinceID. --- cmd/mstdn/cmd_followers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/mstdn/cmd_followers.go b/cmd/mstdn/cmd_followers.go index 1b94430..ee5a86b 100644 --- a/cmd/mstdn/cmd_followers.go +++ b/cmd/mstdn/cmd_followers.go @@ -28,6 +28,7 @@ func cmdFollowers(c *cli.Context) error { if pg.MaxID == "" { break } + pg.SinceID = "" time.Sleep(10 * time.Second) } s := newScreen(config)