better reporting when d* parent not found
This commit is contained in:
parent
395faae0b2
commit
16129a4b8c
1 changed files with 1 additions and 1 deletions
|
@ -482,7 +482,7 @@ function diaspora_comment($importer,$xml,$msg) {
|
||||||
dbesc($parent_guid)
|
dbesc($parent_guid)
|
||||||
);
|
);
|
||||||
if(! count($r)) {
|
if(! count($r)) {
|
||||||
logger('diaspora_comment: parent item not found: ' . $guid);
|
logger('diaspora_comment: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$parent_item = $r[0];
|
$parent_item = $r[0];
|
||||||
|
|
Loading…
Reference in a new issue