aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-03-11 22:24:13 -0700
committerzotlabs <mike@macgirvin.com>2019-03-11 22:24:13 -0700
commit09a5cf4e688fea1f8d7592c8b74631c03b42c25f (patch)
treed0222eab1c6fc048a712b16adf70f653780ea6d4 /include
parent5fb0d38ad8b59bef92655b56cf7145cc979b6dea (diff)
parenta9172129d2f537eddcd273255895712718fe9543 (diff)
downloadvolse-hubzilla-09a5cf4e688fea1f8d7592c8b74631c03b42c25f.tar.gz
volse-hubzilla-09a5cf4e688fea1f8d7592c8b74631c03b42c25f.tar.bz2
volse-hubzilla-09a5cf4e688fea1f8d7592c8b74631c03b42c25f.zip
Merge branch 'dev' of ../hz into dev
Diffstat (limited to 'include')
-rwxr-xr-xinclude/items.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index 51aa81017..9287c81db 100755
--- a/include/items.php
+++ b/include/items.php
@@ -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);
}