aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/ActivityStreams.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-05-10 20:11:54 +0000
committerMario <mario@mariovavti.com>2023-05-10 20:11:54 +0000
commitabc3545ef9eac4f66571d01ce75251139751fcc7 (patch)
tree400f489ea9215cea11ec5a1088b967995a03b5ac /Zotlabs/Lib/ActivityStreams.php
parent01f8cb698d9e94f442ae4aa53b92127bb088c458 (diff)
downloadvolse-hubzilla-abc3545ef9eac4f66571d01ce75251139751fcc7.tar.gz
volse-hubzilla-abc3545ef9eac4f66571d01ce75251139751fcc7.tar.bz2
volse-hubzilla-abc3545ef9eac4f66571d01ce75251139751fcc7.zip
use act->objprop() in decode_note()
Diffstat (limited to 'Zotlabs/Lib/ActivityStreams.php')
-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 cfed53b3c..9e460ff75 100644
--- a/Zotlabs/Lib/ActivityStreams.php
+++ b/Zotlabs/Lib/ActivityStreams.php
@@ -154,7 +154,7 @@ class ActivityStreams {
* @return mixed
*/
public function objprop(string $property, mixed $default = false): mixed {
- $x = $this->get_property_obj($property,$this->obj);
+ $x = $this->get_property_obj($property, $this->obj);
return (isset($x)) ? $x : $default;
}