diff options
author | Mario <mario@mariovavti.com> | 2024-11-17 07:58:11 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-11-17 07:58:11 +0000 |
commit | 81dda15669aa80f22fcabce91bd35dbf45199276 (patch) | |
tree | eadef2d51cf54920c03ea847d89ccdc38a22d182 /Zotlabs/Lib/Libzot.php | |
parent | 5dee6007352c7fd987775307926c381e6fba032e (diff) | |
download | volse-hubzilla-81dda15669aa80f22fcabce91bd35dbf45199276.tar.gz volse-hubzilla-81dda15669aa80f22fcabce91bd35dbf45199276.tar.bz2 volse-hubzilla-81dda15669aa80f22fcabce91bd35dbf45199276.zip |
fix undefined variables
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index be2305c04..3d499bd08 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2096,7 +2096,7 @@ class Libzot { $raw_activity = $AS->data; - $AS = new ActivityStreams($raw_activity['object'], portable_id: $env['sender']); + $AS = new ActivityStreams($raw_activity['object']); // Store the original activity id and type for later usage $AS->meta['original_id'] = $original_id; |