diff options
author | Mario <mario@mariovavti.com> | 2023-10-20 09:30:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-10-20 09:30:29 +0000 |
commit | f2d7298cf4f81674c808c34ea35d7c7de98b6de1 (patch) | |
tree | bd65d818a552c3adcdec4cc3bbd060ebfbbf07dc /Zotlabs/Web/HTTPSig.php | |
parent | da636ca881b799248db2b5912b261627f17a8973 (diff) | |
download | volse-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/Web/HTTPSig.php')
-rw-r--r-- | Zotlabs/Web/HTTPSig.php | 2 |
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) { |