]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add nullcheck for foreign profile.
authorAdrian Lang <mail@adrianlang.de>
Sat, 7 Mar 2009 22:22:57 +0000 (23:22 +0100)
committerAdrian Lang <mail@adrianlang.de>
Wed, 11 Mar 2009 09:40:14 +0000 (10:40 +0100)
lib/twitter.php

index a3929524ba349f17940a443485d72be13940c4d8..7abb40151686eb3779d689ba6bff9aa60f88ebed 100644 (file)
@@ -210,7 +210,7 @@ function save_twitter_friends($user, $twitter_id, $screen_name, $password)
 function is_twitter_bound($notice, $flink) {
 
     // Check to see if notice should go to Twitter
-    if (($flink->noticesync & FOREIGN_NOTICE_SEND)) {
+    if ($flink->noticesync & FOREIGN_NOTICE_SEND) {
 
         // If it's not a Twitter-style reply, or if the user WANTS to send replies.
         if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) ||
@@ -231,7 +231,7 @@ function broadcast_twitter($notice)
             
     // XXX: Not sure WHERE to check whether a notice should go to 
     // Twitter. Should we even put in the queue if it shouldn't? --Zach
-    if (is_twitter_bound($notice, $flink)) {
+    if (!is_null($flink) && is_twitter_bound($notice, $flink)) {
 
         $fuser = $flink->getForeignUser();
         $twitter_user = $fuser->nickname;