fix for errant top-level posts from feeds

This commit is contained in:
Friendika 2011-10-19 21:54:33 -07:00
parent c4179d989f
commit df996a8b5e
1 changed files with 4 additions and 1 deletions

View File

@ -1341,7 +1341,10 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
$parent_uri = $rawthread[0]['attribs']['']['ref'];
}
if(($is_reply) && is_array($contact) && $pass != 1) {
if(($is_reply) && is_array($contact)) {
if($pass == 1)
continue;
// Have we seen it? If not, import it.