diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-10-21 21:42:14 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-10-21 21:42:14 +0200 |
commit | 8ea6ead08ad56c1698e870f694cafe4ccb7bab2d (patch) | |
tree | f6b6f400fe1f324d58386b447673191f025ef0aa /Zotlabs | |
parent | bd9cc23681cf71938cccffef3c2b23a1d76c60b4 (diff) | |
download | volse-hubzilla-8ea6ead08ad56c1698e870f694cafe4ccb7bab2d.tar.gz volse-hubzilla-8ea6ead08ad56c1698e870f694cafe4ccb7bab2d.tar.bz2 volse-hubzilla-8ea6ead08ad56c1698e870f694cafe4ccb7bab2d.zip |
use Activity::get_actor() which will check for the cache record in xconfig before fetching
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ActivityStreams.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php index 8b8c95ad8..4c3e3d8f8 100644 --- a/Zotlabs/Lib/ActivityStreams.php +++ b/Zotlabs/Lib/ActivityStreams.php @@ -351,7 +351,7 @@ class ActivityStreams { $x = $this->get_property_obj($property, $base, $namespace); if ($this->is_url($x)) { - $y = Activity::get_cached_actor($x); + $y = Activity::get_actor($x); if ($y) { return $y; } |