diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-18 19:41:09 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-19 08:44:41 +0200 |
commit | fa78dc79f3f384918a267344920f5802e68ad828 (patch) | |
tree | 1b6b5654f8233acc64b200b590ae23fa0c0562e2 /include/follow.php | |
parent | 1ef31d27c7b37b933f7fd0f7977d23ee186204d5 (diff) | |
download | volse-hubzilla-fa78dc79f3f384918a267344920f5802e68ad828.tar.gz volse-hubzilla-fa78dc79f3f384918a267344920f5802e68ad828.tar.bz2 volse-hubzilla-fa78dc79f3f384918a267344920f5802e68ad828.zip |
follow activitypub by webfinger; requires addon update to all federation protocols
Diffstat (limited to 'include/follow.php')
-rw-r--r-- | include/follow.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/follow.php b/include/follow.php index a63fe66ea..d803afa3f 100644 --- a/include/follow.php +++ b/include/follow.php @@ -150,9 +150,9 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) // attempt network auto-discovery - $d = discover_by_webbie($url,$protocol); + $wf = discover_by_webbie($url,$protocol); - if((! $d) && ($is_http)) { + if((! $wf) && ($is_http)) { // try RSS discovery @@ -167,9 +167,9 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) } } - if($d) { + if($wf || $d) { $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1", - dbesc($url), + dbesc(($wf) ? $wf : $url), dbesc($url) ); } |