Fix mstdn cmd pagination

This commit is contained in:
178inaba 2017-05-06 23:49:46 +09:00
parent 22f47735b4
commit 1c0e37928e
3 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ import (
func cmdTimeline(c *cli.Context) error {
client := c.App.Metadata["client"].(*mastodon.Client)
config := c.App.Metadata["config"].(*mastodon.Config)
timeline, _, err := client.GetTimelineHome(context.Background(), nil)
timeline, err := client.GetTimelineHome(context.Background(), nil)
if err != nil {
return err
}