aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/ActivityStreams.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2022-02-08 15:15:34 +0100
committerMario Vavti <mario@mariovavti.com>2022-02-08 15:15:34 +0100
commit63243c8e0417f6922e745aca3593bb06cb46760e (patch)
treea883b2e00380cdcadc54ce7dc4515c631d56bb81 /Zotlabs/Lib/ActivityStreams.php
parent21c4ec2de0f26341c3dcfda2c03f2db6be2795bf (diff)
parenta8d87af41844c8598a9ef58a8f900831d1f7ea03 (diff)
downloadvolse-hubzilla-63243c8e0417f6922e745aca3593bb06cb46760e.tar.gz
volse-hubzilla-63243c8e0417f6922e745aca3593bb06cb46760e.tar.bz2
volse-hubzilla-63243c8e0417f6922e745aca3593bb06cb46760e.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'Zotlabs/Lib/ActivityStreams.php')
-rw-r--r--Zotlabs/Lib/ActivityStreams.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php
index b86203a34..275f6eff4 100644
--- a/Zotlabs/Lib/ActivityStreams.php
+++ b/Zotlabs/Lib/ActivityStreams.php
@@ -92,7 +92,7 @@ class ActivityStreams {
$this->ldsig = $this->get_compound_property('signature');
if ($this->ldsig) {
- $this->signer = $this->get_compound_property('creator', $this->ldsig);
+ $this->signer = $this->get_actor('creator', $this->ldsig);
if ($this->signer && is_array($this->signer) && array_key_exists('publicKey', $this->signer) && is_array($this->signer['publicKey']) && $this->signer['publicKey']['publicKeyPem']) {
$this->sigok = LDSignatures::verify($this->data, $this->signer['publicKey']['publicKeyPem']);
}