diff options
author | Mario <mario@mariovavti.com> | 2021-01-20 20:42:59 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-20 20:42:59 +0000 |
commit | 57645386b2cd0adb1e8aa7a69d638853b32b6f08 (patch) | |
tree | be07bd4fa54f30f057b3939c8b45100ba595b2df /Zotlabs/Lib/Activity.php | |
parent | b242347fa1d41695edcdc378a2403b1621303da2 (diff) | |
download | volse-hubzilla-57645386b2cd0adb1e8aa7a69d638853b32b6f08.tar.gz volse-hubzilla-57645386b2cd0adb1e8aa7a69d638853b32b6f08.tar.bz2 volse-hubzilla-57645386b2cd0adb1e8aa7a69d638853b32b6f08.zip |
looks like we get arrays or json strings here for some reason
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 0f9160bf7..aa121d98b 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -299,7 +299,13 @@ class Activity { if ($items) { $x = []; foreach ($items as $i) { - $t = ((get_iconfig($i['id'], 'activitypub', 'rawmsg')) ? get_iconfig($i['id'], 'activitypub', 'rawmsg') : self::encode_activity($i)); + $m = get_iconfig($i['id'], 'activitypub', 'rawmsg'); + if (is_string($m)) { + $t = json_decode($m, true); + } + else { + $t = $m; + } if ($t) { $x[] = $t; } |