aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2023-10-21 21:42:14 +0200
committerMario Vavti <mario@mariovavti.com>2023-10-21 21:42:14 +0200
commit8ea6ead08ad56c1698e870f694cafe4ccb7bab2d (patch)
treef6b6f400fe1f324d58386b447673191f025ef0aa
parentbd9cc23681cf71938cccffef3c2b23a1d76c60b4 (diff)
downloadvolse-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
-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 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;
}