revert an optimisation that was wrong

This commit is contained in:
friendica 2012-06-11 21:50:10 -07:00
parent 6c1914e6bc
commit b7e2f802d8
1 changed files with 3 additions and 4 deletions

View File

@ -1853,13 +1853,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$datarray['last-child'] = 1; $datarray['last-child'] = 1;
} }
if($contact['network'] === NETWORK_FEED) { if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
if(! strlen($contact['notify'])) {
// one way feed - no remote comment ability // one way feed - no remote comment ability
$datarray['last-child'] = 0; $datarray['last-child'] = 0;
}
$datarray['private'] = 1;
} }
if($contact['network'] === NETWORK_FEED)
$datarray['private'] = 1;
// This is my contact on another system, but it's really me. // This is my contact on another system, but it's really me.
// Turn this into a wall post. // Turn this into a wall post.