zot logging to figure out why we occasionally don't have an address on xchan_import - I suspect we don't have anything useful at all.

This commit is contained in:
friendica 2014-08-12 20:46:33 -07:00
parent 40667e72ad
commit 802a5c2946

View file

@ -625,6 +625,10 @@ function import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED, $ud_arr = null) {
return $ret;
}
if(! ($arr['guid'] && $arr['guid_sig'])) {
logger('import_xchan: no identity information provided. ' . print_r($arr,true));
return $ret;
}
$xchan_hash = make_xchan_hash($arr['guid'],$arr['guid_sig']);
$import_photos = false;