]> git.mxchange.org Git - friendica-addons.git/commitdiff
[twitter] Fix typo, improve formatting in twitter_unfollow()
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 2 Oct 2021 15:27:57 +0000 (11:27 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 2 Oct 2021 15:27:57 +0000 (11:27 -0400)
twitter/twitter.php

index f8da6cc48d8445eef7a4dac581b9220f153c9cd3..02470f9891ef83d06b0a7ab444a440ae24d0a567 100644 (file)
@@ -177,15 +177,15 @@ function twitter_follow(App $a, array &$contact)
 function twitter_unfollow(App $a, array &$hook_data)
 {
        $contact = $hook_data['contact'];
-       if ($contact['netword'] !== Protocol::TWITTER) {
+       if ($contact['network'] !== Protocol::TWITTER) {
                return;
        }
 
        $uid = $a->getLoggedInUserId();
 
-       $ckey = DI::config()->get('twitter', 'consumerkey');
+       $ckey    = DI::config()->get('twitter', 'consumerkey');
        $csecret = DI::config()->get('twitter', 'consumersecret');
-       $otoken = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
+       $otoken  = DI::pConfig()->get($uid, 'twitter', 'oauthtoken');
        $osecret = DI::pConfig()->get($uid, 'twitter', 'oauthsecret');
 
        // If the addon is not configured (general or for this user) quit here
@@ -195,10 +195,10 @@ function twitter_unfollow(App $a, array &$hook_data)
 
        try {
                $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
-               $result = $connection->post('friendships/destroy', ['screen_name' => $contact['nick']]);
+               $result     = $connection->post('friendships/destroy', ['screen_name' => $contact['nick']]);
                Logger::info('[twitter] API call "friendship/destroy" successful', ['result' => $result]);
                $hook_data['result'] = true;
-       } catch(Exception $e) {
+       } catch (Exception $e) {
                Logger::notice('[twitter] API call "friendships/destroy" failed', ['uid' => $uid, 'url' => $contact['url'], 'exception' => $e]);
                $hook_data['result'] = false;
        }