From ea66bd539dec12ef2846c23e505593f9f9d9fac3 Mon Sep 17 00:00:00 2001 From: r Date: Sat, 14 Dec 2019 18:12:48 +0000 Subject: Focus relevant status on like, retweet and reply --- service/service.go | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'service/service.go') diff --git a/service/service.go b/service/service.go index b10a5de..3bfb163 100644 --- a/service/service.go +++ b/service/service.go @@ -36,7 +36,7 @@ type Service interface { UnLike(ctx context.Context, client io.Writer, c *mastodon.Client, id string) (err error) Retweet(ctx context.Context, client io.Writer, c *mastodon.Client, id string) (err error) UnRetweet(ctx context.Context, client io.Writer, c *mastodon.Client, id string) (err error) - PostTweet(ctx context.Context, client io.Writer, c *mastodon.Client, content string, replyToID string) (err error) + PostTweet(ctx context.Context, client io.Writer, c *mastodon.Client, content string, replyToID string) (id string, err error) } type service struct { @@ -292,11 +292,16 @@ func (svc *service) UnRetweet(ctx context.Context, client io.Writer, c *mastodon return } -func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *mastodon.Client, content string, replyToID string) (err error) { +func (svc *service) PostTweet(ctx context.Context, client io.Writer, c *mastodon.Client, content string, replyToID string) (id string, err error) { tweet := &mastodon.Toot{ Status: content, InReplyToID: replyToID, } - _, err = c.PostStatus(ctx, tweet) - return + + s, err := c.PostStatus(ctx, tweet) + if err != nil { + return + } + + return s.ID, nil } -- cgit v1.2.3