Twitter: Set the direction for imported posts

This commit is contained in:
Michael 2021-01-11 06:14:22 +00:00
parent 559c85775e
commit 0417ee39fd
1 changed files with 2 additions and 0 deletions

View File

@ -1584,6 +1584,7 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
$postarray['uri'] = "twitter::" . $post->id_str; $postarray['uri'] = "twitter::" . $post->id_str;
$postarray['protocol'] = Conversation::PARCEL_TWITTER; $postarray['protocol'] = Conversation::PARCEL_TWITTER;
$postarray['source'] = json_encode($post); $postarray['source'] = json_encode($post);
$postarray['direction'] = Conversation::PULL;
if (empty($uriid)) { if (empty($uriid)) {
$uriid = $postarray['uri-id'] = ItemURI::insert(['uri' => $postarray['uri']]); $uriid = $postarray['uri-id'] = ItemURI::insert(['uri' => $postarray['uri']]);
@ -1724,6 +1725,7 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
$postarray['thr-parent'] = $retweet['uri']; $postarray['thr-parent'] = $retweet['uri'];
} else { } else {
$retweet['source'] = $postarray['source']; $retweet['source'] = $postarray['source'];
$retweet['direction'] = $postarray['direction'];
$retweet['private'] = $postarray['private']; $retweet['private'] = $postarray['private'];
$retweet['allow_cid'] = $postarray['allow_cid']; $retweet['allow_cid'] = $postarray['allow_cid'];
$retweet['contact-id'] = $postarray['contact-id']; $retweet['contact-id'] = $postarray['contact-id'];