From 91d87b01752a35f67508d5eb6f804946d7f9f7f2 Mon Sep 17 00:00:00 2001 From: r Date: Sun, 19 Apr 2020 05:57:40 +0000 Subject: Add account {hide,show}retweets --- service/logging.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'service/logging.go') diff --git a/service/logging.go b/service/logging.go index c16cdb3..16279cc 100644 --- a/service/logging.go +++ b/service/logging.go @@ -221,12 +221,12 @@ func (s *ls) Vote(ctx context.Context, c *model.Client, id string, choices []str return s.Service.Vote(ctx, c, id, choices) } -func (s *ls) Follow(ctx context.Context, c *model.Client, id string) (err error) { +func (s *ls) Follow(ctx context.Context, c *model.Client, id string, reblogs *bool) (err error) { defer func(begin time.Time) { s.logger.Printf("method=%v, id=%v, took=%v, err=%v\n", "Follow", id, time.Since(begin), err) }(time.Now()) - return s.Service.Follow(ctx, c, id) + return s.Service.Follow(ctx, c, id, reblogs) } func (s *ls) UnFollow(ctx context.Context, c *model.Client, id string) (err error) { -- cgit v1.2.3