aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Web
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-06-16 12:16:22 +0000
committerMario <mario@mariovavti.com>2023-06-16 12:16:22 +0000
commit18b7b3f125b88143d4edefec22a0df67869788d9 (patch)
tree95091a727d0e0e34dbfaafb739294b52151dbd5e /Zotlabs/Web
parent6989a3eaadd676c5c1b5fd523c4196d289423471 (diff)
downloadvolse-hubzilla-18b7b3f125b88143d4edefec22a0df67869788d9.tar.gz
volse-hubzilla-18b7b3f125b88143d4edefec22a0df67869788d9.tar.bz2
volse-hubzilla-18b7b3f125b88143d4edefec22a0df67869788d9.zip
deprecate ActivityStreams::fetch() and provide the possibility to fetch local items directly
Diffstat (limited to 'Zotlabs/Web')
-rw-r--r--Zotlabs/Web/HTTPSig.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php
index 2f04003ab..531b18649 100644
--- a/Zotlabs/Web/HTTPSig.php
+++ b/Zotlabs/Web/HTTPSig.php
@@ -4,7 +4,7 @@ namespace Zotlabs\Web;
use DateTime;
use DateTimeZone;
-use Zotlabs\Lib\ActivityStreams;
+use Zotlabs\Lib\Activity;
use Zotlabs\Lib\Crypto;
use Zotlabs\Lib\Keyutils;
use Zotlabs\Lib\Webfinger;
@@ -324,7 +324,7 @@ class HTTPSig {
}
// The record wasn't in cache. Fetch it now.
- $r = ActivityStreams::fetch($id);
+ $r = Activity::fetch($id);
$signatureAlgorithm = EMPTY_STR;
if ($r) {