From cb4b8b51840ae2ff7964d71a50ce425d0bd15963 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 10 Dec 2016 11:15:37 +0000 Subject: [PATCH] Passthrough some more fields --- twitter/twitter.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/twitter/twitter.php b/twitter/twitter.php index 0202a30b..e862fc7a 100644 --- a/twitter/twitter.php +++ b/twitter/twitter.php @@ -1357,6 +1357,7 @@ function twitter_createpost($a, $uid, $post, $self, $create_user, $only_existing $postarray['uri'] = "twitter::".$post->id_str; $postarray['object'] = json_encode($post); + // Don't import our own comments $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1", dbesc($postarray['uri']), intval($uid) @@ -1488,6 +1489,8 @@ function twitter_createpost($a, $uid, $post, $self, $create_user, $only_existing $retweet = twitter_createpost($a, $uid, $post->retweeted_status, $self, false, false, $noquote); $retweet['object'] = $postarray['object']; + $retweet['private'] = $postarray['private']; + $retweet['allow_cid'] = $postarray['allow_cid']; $retweet['contact-id'] = $postarray['contact-id']; $retweet['owner-name'] = $postarray['owner-name']; $retweet['owner-link'] = $postarray['owner-link']; -- 2.39.2