From 1830ecc9baa13b7d28f6a8250832832f2cc6a537 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 28 Jun 2012 18:52:49 -0700 Subject: [PATCH] remote_self feeds are not private --- include/items.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 494a54734..74ffc2f84 100755 --- a/include/items.php +++ b/include/items.php @@ -1895,8 +1895,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) // This is my contact on another system, but it's really me. // Turn this into a wall post. - if($contact['remote_self']) + if($contact['remote_self']) { $datarray['wall'] = 1; + if($contact['network'] === NETWORK_FEED) { + $datarray['private'] = 0; + } + } $datarray['parent-uri'] = $item_id; $datarray['uid'] = $importer['uid'];