aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Externals.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-02-08 15:15:18 +0000
committerMario <mario@mariovavti.com>2022-02-08 15:15:18 +0000
commitc94f25570b94ba2f389fbd1ad9f547a10e962e24 (patch)
tree294fabaf3e7d9172c8e0201a389b0e72d0cbf29f /Zotlabs/Daemon/Externals.php
parentffa5e088325a8ddef0941efee58a8be739ffb538 (diff)
parent63243c8e0417f6922e745aca3593bb06cb46760e (diff)
downloadvolse-hubzilla-c94f25570b94ba2f389fbd1ad9f547a10e962e24.tar.gz
volse-hubzilla-c94f25570b94ba2f389fbd1ad9f547a10e962e24.tar.bz2
volse-hubzilla-c94f25570b94ba2f389fbd1ad9f547a10e962e24.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'Zotlabs/Daemon/Externals.php')
-rw-r--r--Zotlabs/Daemon/Externals.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Externals.php b/Zotlabs/Daemon/Externals.php
index 81414d02d..fb35a65c7 100644
--- a/Zotlabs/Daemon/Externals.php
+++ b/Zotlabs/Daemon/Externals.php
@@ -133,7 +133,9 @@ class Externals {
continue;
}
- Libzot::fetch_conversation($importer, $message['object']['id']);
+ $obj_id = isset($message['object']['id']) ?? $message['object'];
+
+ Libzot::fetch_conversation($importer, $obj_id);
$total++;
continue;
}