diff options
author | Mario <mario@mariovavti.com> | 2022-03-10 09:44:37 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-03-10 09:44:37 +0000 |
commit | 9e7fd20adec8e3504ee19bd53d762a40c5ac75e4 (patch) | |
tree | 68b7bba13a5840d10dd6ba834967018352885663 /Zotlabs/Lib/Activity.php | |
parent | efa1d381ba8205ee64f41f1c3ba9f2416f15ef76 (diff) | |
download | volse-hubzilla-9e7fd20adec8e3504ee19bd53d762a40c5ac75e4.tar.gz volse-hubzilla-9e7fd20adec8e3504ee19bd53d762a40c5ac75e4.tar.bz2 volse-hubzilla-9e7fd20adec8e3504ee19bd53d762a40c5ac75e4.zip |
support for hs2019
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 721f2ed0e..f0e2bc805 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -1154,9 +1154,10 @@ class Activity { $ret['url'] = $p['xchan_url']; $ret['publicKey'] = [ - 'id' => $p['xchan_url'], - 'owner' => $p['xchan_url'], - 'publicKeyPem' => $p['xchan_pubkey'] + 'id' => $p['xchan_url'], + 'owner' => $p['xchan_url'], + 'signatureAlgorithm' => 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256', + 'publicKeyPem' => $p['xchan_pubkey'] ]; if ($c) { |