diff options
author | Mario <mario@mariovavti.com> | 2025-02-20 11:27:46 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-02-20 11:27:46 +0000 |
commit | 2b4b409c01b29c38fcc4213cd9a2444f3312e0b5 (patch) | |
tree | 07cbd361cde777ab53886a9937945cac60894dcc /Zotlabs | |
parent | 67aa547c483465fca780b14555615ee660119d65 (diff) | |
download | volse-hubzilla-2b4b409c01b29c38fcc4213cd9a2444f3312e0b5.tar.gz volse-hubzilla-2b4b409c01b29c38fcc4213cd9a2444f3312e0b5.tar.bz2 volse-hubzilla-2b4b409c01b29c38fcc4213cd9a2444f3312e0b5.zip |
make sure attachment is an array
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 2db0c6c12..ae4cc02c6 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -803,7 +803,7 @@ class Activity { $ret = []; - if (isset($item['attachment'])) { + if (isset($item['attachment']) && is_array($item['attachment'])) { $ptr = $item['attachment']; if (!array_key_exists(0, $ptr)) { $ptr = [$ptr]; |