diff options
author | Mario <mario@mariovavti.com> | 2024-01-14 10:11:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-14 10:11:20 +0000 |
commit | 2bbecfe8dd44bd51a3425ee667859946f6ac0763 (patch) | |
tree | 833cca35c795563f3028328a43f0341562b0d8ac /Zotlabs/Lib/Activity.php | |
parent | e078e133257aca1f1508382135ea342cc751c96d (diff) | |
download | volse-hubzilla-2bbecfe8dd44bd51a3425ee667859946f6ac0763.tar.gz volse-hubzilla-2bbecfe8dd44bd51a3425ee667859946f6ac0763.tar.bz2 volse-hubzilla-2bbecfe8dd44bd51a3425ee667859946f6ac0763.zip |
only attempt fetch if zotfinger actually returned something
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index f59992cc3..f4c395906 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -1767,7 +1767,7 @@ class Activity { $am['type'] === 'Multikey' && str_starts_with($am['publicKeyMultibase'], 'z6Mk') ) { - $epubkey = $person_obj['assertionMethod']['publicKeyMultibase']; + $epubkey = $am['publicKeyMultibase']; } } } |