check zot6 in import_author_xchan

This commit is contained in:
zotlabs 2019-03-11 22:17:36 -07:00
parent 4e97fb0e58
commit a9172129d2

View File

@ -914,6 +914,15 @@ function import_author_xchan($x) {
if(array_key_exists('network',$x) && $x['network'] === 'zot')
return $y;
// perform zot6 discovery
if($x['url']) {
$y = discover_by_webbie($x['url'],'zot6');
if($y) {
return $y;
}
}
if($x['network'] === 'rss') {
$y = import_author_rss($x);
}