Twitter: Make incoming posts unlisted

This commit is contained in:
Michael 2021-05-24 06:00:23 +00:00
parent 225fbd0677
commit d14f604049
1 changed files with 2 additions and 2 deletions

View File

@ -1668,10 +1668,10 @@ function twitter_createpost(App $a, $uid, $post, array $self, $create_user, $onl
$postarray['app'] = strip_tags($post->source);
if ($post->user->protected) {
$postarray['private'] = 1;
$postarray['private'] = Item::PRIVATE;
$postarray['allow_cid'] = '<' . $self['id'] . '>';
} else {
$postarray['private'] = 0;
$postarray['private'] = Item::UNLISTED;
$postarray['allow_cid'] = '';
}