Skip to content

Commit 3de68ea

Browse files
committed
fix: missing return on FollowUser
1 parent 923e1be commit 3de68ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

twitterv1/user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ func FollowUser(c *fiber.Ctx) error {
338338
user, err := blueskyapi.FollowUser(*pds, *oauthToken, actor, *my_did)
339339

340340
if err != nil {
341-
HandleBlueskyError(c, err.Error(), "app.bsky.graph.follow", FollowUser) // lexicon isnt tecnically right, but its fine idc
341+
return HandleBlueskyError(c, err.Error(), "app.bsky.graph.follow", FollowUser) // lexicon isnt tecnically right, but its fine idc
342342
}
343343

344344
// convert user into twitter format

0 commit comments

Comments
 (0)