diff options
author | Mario <mario@mariovavti.com> | 2020-11-08 12:55:32 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-08 12:55:32 +0000 |
commit | 255b6a14a8d993a086dc790e8c4dbe64ce6e3e48 (patch) | |
tree | a3b3fb650c9ffc117d4c0b871686c1309642b796 /Zotlabs/Lib/Zotfinger.php | |
parent | e98804693dfde4a6da075fc9fdf85a0ac12c3658 (diff) | |
download | volse-hubzilla-255b6a14a8d993a086dc790e8c4dbe64ce6e3e48.tar.gz volse-hubzilla-255b6a14a8d993a086dc790e8c4dbe64ce6e3e48.tar.bz2 volse-hubzilla-255b6a14a8d993a086dc790e8c4dbe64ce6e3e48.zip |
less hubloc confusion
Diffstat (limited to 'Zotlabs/Lib/Zotfinger.php')
-rw-r--r-- | Zotlabs/Lib/Zotfinger.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Zotlabs/Lib/Zotfinger.php b/Zotlabs/Lib/Zotfinger.php index 722e34dfc..e853d6ebc 100644 --- a/Zotlabs/Lib/Zotfinger.php +++ b/Zotlabs/Lib/Zotfinger.php @@ -6,7 +6,7 @@ use Zotlabs\Web\HTTPSig; class Zotfinger { - static function exec($resource,$channel = null) { + static function exec($resource,$channel = null, $verify = true) { if(! $resource) { return false; @@ -41,8 +41,9 @@ class Zotfinger { logger('fetch: ' . print_r($x,true)); if($x['success']) { - - $result['signature'] = HTTPSig::verify($x); + if ($verify) { + $result['signature'] = HTTPSig::verify($x, EMPTY_STR, 'zot6'); + } $result['data'] = json_decode($x['body'],true); |