Skip to content

Commit

Permalink
Use the owner-id at another place
Browse files Browse the repository at this point in the history
  • Loading branch information
annando committed Feb 2, 2022
1 parent a1a3322 commit fd2fb29
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions twitter/twitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -1886,13 +1886,14 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl

$postarray['thr-parent'] = $retweet['uri'];
} else {
$retweet['source'] = $postarray['source'];
$retweet['direction'] = $postarray['direction'];
$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'];
$retweet['source'] = $postarray['source'];
$retweet['direction'] = $postarray['direction'];
$retweet['private'] = $postarray['private'];
$retweet['allow_cid'] = $postarray['allow_cid'];
$retweet['contact-id'] = $postarray['contact-id'];
$retweet['owner-id'] = $postarray['owner-id'];
$retweet['owner-name'] = $postarray['owner-name'];
$retweet['owner-link'] = $postarray['owner-link'];
$retweet['owner-avatar'] = $postarray['owner-avatar'];

$postarray = $retweet;
Expand Down

0 comments on commit fd2fb29

Please sign in to comment.