diff options
author | friendica <info@friendica.com> | 2014-09-01 20:41:05 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-01 20:41:05 -0700 |
commit | f64abf3ad8b5c753a3e47669c69c4acda9696e5e (patch) | |
tree | 551eb26d133b6a15d14e67069e638040ef040372 | |
parent | 148f4e8795391d80994fe8009f161b02f57a130f (diff) | |
download | volse-hubzilla-f64abf3ad8b5c753a3e47669c69c4acda9696e5e.tar.gz volse-hubzilla-f64abf3ad8b5c753a3e47669c69c4acda9696e5e.tar.bz2 volse-hubzilla-f64abf3ad8b5c753a3e47669c69c4acda9696e5e.zip |
logic inverted
-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 d1c6afbee..cf6bfde77 100644 --- a/include/follow.php +++ b/include/follow.php @@ -51,7 +51,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) if($arr['channel']['success']) $ret = $arr['channel']; - elseif($is_http) + elseif(! $is_http) $ret = zot_finger($url,$channel); if($ret && $ret['success']) { |