incorrect function name

This commit is contained in:
redmatrix 2015-07-29 17:04:50 -07:00
parent cbb6d37b6c
commit df41ce9536
2 changed files with 2 additions and 2 deletions

View file

@ -1008,7 +1008,7 @@ function diaspora_post($importer,$xml,$msg) {
return 202;
}
if(! is_importable($datarray,$contact)) {
if(! post_is_importable($datarray,$contact)) {
logger('diaspora_post: filtering this author.');
return 202;
}

View file

@ -3765,7 +3765,7 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) {
$author['owner_avatar'] = $contact['thumb'];
}
if(! is_importable($datarray,$contact))
if(! post_is_importable($datarray,$contact))
continue;