diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-09-26 15:05:16 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-09-26 15:05:16 +0200 |
commit | 3f784a974a1ccc15f69865f8015b0c36fd7bc1d7 (patch) | |
tree | 4eb9aa05fd00be89fafe943a846042b64b750c65 /include/socgraph.php | |
parent | b25054e891fdb1eb88474a289025cf6d9d1d534c (diff) | |
download | volse-hubzilla-3f784a974a1ccc15f69865f8015b0c36fd7bc1d7.tar.gz volse-hubzilla-3f784a974a1ccc15f69865f8015b0c36fd7bc1d7.tar.bz2 volse-hubzilla-3f784a974a1ccc15f69865f8015b0c36fd7bc1d7.zip |
deprecate \Zotlabs\Zot\Finger where apropriate
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index 3d26f5cfd..3da4dce63 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -158,7 +158,7 @@ function poco_load($xchan = '', $url = null) { if($address) { if($network === 'zot6') { $j = Zotfinger::exec($profile_url); - if(is_array($j) && array_path_exists('signature/signer',$j) && $j['signature']['signer'] === $profile_url && intval($j['signature']['header_valid'])) { + if(array_path_exists('signature/signer',$j) && $j['signature']['signer'] === $profile_url && intval($j['signature']['header_valid'])) { Libzot::import_xchan($j['data']); } $x = q("select xchan_hash from xchan where xchan_hash = '%s' limit 1", |