]> git.mxchange.org Git - friendica-addons.git/commitdiff
Quit if twitter addon is not configured
authorMichael <heluecht@pirati.ca>
Tue, 30 Jan 2018 18:52:06 +0000 (18:52 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 30 Jan 2018 18:52:06 +0000 (18:52 +0000)
twitter/twitter.php

index bca5e7db715510dc7d00a783041785b741f4f27d..1863b8bcb47ec6826edf03828a0f28f43aa94ab7 100644 (file)
@@ -158,6 +158,12 @@ function twitter_follow(App $a, &$contact)
        $otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
        $osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
 
+       // If the addon is not configured (general or for this user) quit here
+       if (empty($ckey) || empty($csecret) || empty($otoken) || empty($osecret)) {
+               $contact = false;
+               return;
+       }
+
        $connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
        $connection->post('friendships/create', ['screen_name' => $nickname]);