]> git.mxchange.org Git - friendica-addons.git/commitdiff
Merge remote-tracking branch 'upstream/master' into 1612-twitter-media
authorMichael <heluecht@pirati.ca>
Tue, 13 Dec 2016 08:57:45 +0000 (08:57 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 13 Dec 2016 08:57:45 +0000 (08:57 +0000)
twitter/twitter.php

index c37da0532b210b1a48e63beb14df799dec6b63c3..934b8d3cec03a9fda1f5ef3ace3a9c022e212d62 100644 (file)
@@ -750,11 +750,12 @@ function twitter_do_mirrorpost($a, $uid, $post) {
        $datarray["profile_uid"] = $uid;
        $datarray["extid"] = NETWORK_TWITTER;
        $datarray['message_id'] = item_new_uri($a->get_hostname(), $uid, NETWORK_TWITTER.":".$post->id);
+       $datarray['object'] = json_encode($post);
        $datarray["title"] = "";
 
        if (is_object($post->retweeted_status)) {
                // We don't support nested shares, so we mustn't show quotes as shares on retweets
-               $item = twitter_createpost($a, $uid, $post, array('id' => 0), false, false, true);
+               $item = twitter_createpost($a, $uid, $post->retweeted_status, array('id' => 0), false, false, true);
 
                $datarray['body'] = "\n".share_header($item['author-name'], $item['author-link'], $item['author-avatar'], "",
                                        $item['created'], $item['plink']);
@@ -1364,6 +1365,7 @@ function twitter_createpost($a, $uid, $post, $self, $create_user, $only_existing
                );
 
        if (count($r)) {
+               logger("Item with extid ".$postarray['uri']." found.", LOGGER_DEBUG);
                return(array());
        }
 
@@ -1413,6 +1415,7 @@ function twitter_createpost($a, $uid, $post, $self, $create_user, $only_existing
                                $postarray['owner-link'] = $r[0]["url"];
                                $postarray['owner-avatar'] =  $r[0]["photo"];
                        } else {
+                               logger("No self contact for user ".$uid, LOGGER_DEBUG);
                                return(array());
                        }
                }
@@ -1434,6 +1437,7 @@ function twitter_createpost($a, $uid, $post, $self, $create_user, $only_existing
        if(($contactid == 0) AND !$only_existing_contact) {
                $contactid = $self['id'];
        } elseif ($contactid <= 0) {
+               logger("Contact ID is zero or less than zero.", LOGGER_DEBUG);
                return(array());
        }