aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Zotfinger.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-08 12:55:32 +0000
committerMario <mario@mariovavti.com>2020-11-08 12:55:32 +0000
commit255b6a14a8d993a086dc790e8c4dbe64ce6e3e48 (patch)
treea3b3fb650c9ffc117d4c0b871686c1309642b796 /Zotlabs/Lib/Zotfinger.php
parente98804693dfde4a6da075fc9fdf85a0ac12c3658 (diff)
downloadvolse-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.php7
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);