still an issue with caching import_author_zot

This commit is contained in:
zotlabs 2017-06-20 16:33:53 -07:00
parent 31e0812711
commit 0233e9ad2a

View File

@ -803,6 +803,10 @@ function import_author_xchan($x) {
$y = import_author_zot($x); $y = import_author_zot($x);
} }
// if we were told that it's a zot connection, don't probe/import anything else
if(array_key_exists('network',$x) && $x['network'] === 'zot')
return $y;
if($x['network'] === 'rss') { if($x['network'] === 'rss') {
$y = import_author_rss($x); $y = import_author_rss($x);
} }