[twitter] Abort follow process on API call failure

- Prevents users without a connected Twitter account from visibly following a Twitter contact
pull/1228/head
Hypolite Petovan 2022-01-07 12:34:28 +01:00
parent 5df88741f2
commit e46bff23d5
1 changed files with 4 additions and 1 deletions

View File

@ -157,7 +157,10 @@ function twitter_follow(App $a, array &$contact)
$uid = $a->getLoggedInUserId();
twitter_api_contact('friendships/create', ['network' => Protocol::TWITTER, 'nick' => $nickname], $uid);
if (!twitter_api_contact('friendships/create', ['network' => Protocol::TWITTER, 'nick' => $nickname], $uid)) {
$contact = null;
return;
}
$user = twitter_fetchuser($nickname);