diff options
author | Mario <mario@mariovavti.com> | 2021-01-15 21:23:14 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-15 21:23:14 +0000 |
commit | 4d63c37c38429b9d98bb612cc55956f9650bdb56 (patch) | |
tree | e8cbc49e25109eb6c29a93d44da322d09500208c /Zotlabs | |
parent | a2776ade8168b22e67219aaa11137efda5797afc (diff) | |
download | volse-hubzilla-4d63c37c38429b9d98bb612cc55956f9650bdb56.tar.gz volse-hubzilla-4d63c37c38429b9d98bb612cc55956f9650bdb56.tar.bz2 volse-hubzilla-4d63c37c38429b9d98bb612cc55956f9650bdb56.zip |
HTTPSig::get_zotfinger_key() only takes the id arg
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Web/HTTPSig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php index 1f6979191..0b3e2bf2e 100644 --- a/Zotlabs/Web/HTTPSig.php +++ b/Zotlabs/Web/HTTPSig.php @@ -225,7 +225,7 @@ class HTTPSig { } if($keytype === 'zot6') { - $key = self::get_zotfinger_key($id,$force); + $key = self::get_zotfinger_key($id); if($key) { return $key; } |