diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-10 13:48:18 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-10 13:48:18 -0700 |
commit | be225164ebdde1b76a376fade83b93697507264e (patch) | |
tree | d4aab3aef094e875183c4c746458f9edc00361dc /include/follow.php | |
parent | 1650ac2edd28b2007188a9e0c43ebab68b1660ee (diff) | |
download | volse-hubzilla-be225164ebdde1b76a376fade83b93697507264e.tar.gz volse-hubzilla-be225164ebdde1b76a376fade83b93697507264e.tar.bz2 volse-hubzilla-be225164ebdde1b76a376fade83b93697507264e.zip |
allow either
Diffstat (limited to 'include/follow.php')
-rw-r--r-- | include/follow.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/follow.php b/include/follow.php index d803afa3f..e2f0a8f4d 100644 --- a/include/follow.php +++ b/include/follow.php @@ -158,7 +158,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) $feeds = get_config('system','feed_contacts'); - if(($feeds) && ($protocol === '' || $protocol === 'feed')) { + if(($feeds) && ($protocol === '' || $protocol === 'feed' || $protocol === 'rss')) { $d = discover_by_url($url); } else { |