aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-10-20 09:30:29 +0000
committerMario <mario@mariovavti.com>2023-10-20 09:30:29 +0000
commitf2d7298cf4f81674c808c34ea35d7c7de98b6de1 (patch)
treebd65d818a552c3adcdec4cc3bbd060ebfbbf07dc /Zotlabs
parentda636ca881b799248db2b5912b261627f17a8973 (diff)
downloadvolse-hubzilla-f2d7298cf4f81674c808c34ea35d7c7de98b6de1.tar.gz
volse-hubzilla-f2d7298cf4f81674c808c34ea35d7c7de98b6de1.tar.bz2
volse-hubzilla-f2d7298cf4f81674c808c34ea35d7c7de98b6de1.zip
check if we have the record in the short time cache before actually fetching it
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Web/HTTPSig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php
index 531b18649..b709d3e44 100644
--- a/Zotlabs/Web/HTTPSig.php
+++ b/Zotlabs/Web/HTTPSig.php
@@ -324,7 +324,7 @@ class HTTPSig {
}
// The record wasn't in cache. Fetch it now.
- $r = Activity::fetch($id);
+ $r = Activity::get_actor($id);
$signatureAlgorithm = EMPTY_STR;
if ($r) {