diff options
author | Mario <mario@mariovavti.com> | 2023-05-10 20:11:54 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-05-10 20:11:54 +0000 |
commit | abc3545ef9eac4f66571d01ce75251139751fcc7 (patch) | |
tree | 400f489ea9215cea11ec5a1088b967995a03b5ac /Zotlabs/Lib/ActivityStreams.php | |
parent | 01f8cb698d9e94f442ae4aa53b92127bb088c458 (diff) | |
download | volse-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.php | 2 |
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; } |