Merge pull request #1237 from MrPetovan/task/10862-move-unfollow-worker

[twitter] Update unfollow and block hook functions after parameters have changed
pull/1238/head
Michael Vogel 2022-02-24 21:24:48 +01:00 committed by GitHub
commit 7be6eb5d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -175,7 +175,7 @@ function twitter_follow(App $a, array &$contact)
function twitter_unfollow(App $a, array &$hook_data)
{
$hook_data['result'] = twitter_api_contact('friendships/destroy', $hook_data['contact'], $hook_data['contact']['uid']);
$hook_data['result'] = twitter_api_contact('friendships/destroy', $hook_data['contact'], $hook_data['uid']);
}
function twitter_block(App $a, array &$hook_data)
@ -183,8 +183,8 @@ function twitter_block(App $a, array &$hook_data)
$hook_data['result'] = twitter_api_contact('blocks/create', $hook_data['contact'], $hook_data['uid']);
if ($hook_data['result'] === true) {
Contact::removeFollower($hook_data['contact']);
Contact::unfollow($hook_data['contact']['id'], $hook_data['uid']);
$cdata = Contact::getPublicAndUserContactID($hook_data['contact']['id'], $hook_data['uid']);
Contact::remove($cdata['user']);
}
}