aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2025-02-20 11:27:46 +0000
committerMario <mario@mariovavti.com>2025-02-20 11:27:46 +0000
commit2b4b409c01b29c38fcc4213cd9a2444f3312e0b5 (patch)
tree07cbd361cde777ab53886a9937945cac60894dcc /Zotlabs
parent67aa547c483465fca780b14555615ee660119d65 (diff)
downloadvolse-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.php2
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];