aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Item.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2021-01-25 21:52:17 +0100
committerMario Vavti <mario@mariovavti.com>2021-01-25 21:52:17 +0100
commitd4198223bc1fd06e9b9fe969edb5d03811889def (patch)
tree4203b70f293dab3734b6e63325a7b311d35bbfcc /Zotlabs/Module/Item.php
parent77793e17c04b1f67c10a83e7877c36a8b11ddbaa (diff)
downloadvolse-hubzilla-d4198223bc1fd06e9b9fe969edb5d03811889def.tar.gz
volse-hubzilla-d4198223bc1fd06e9b9fe969edb5d03811889def.tar.bz2
volse-hubzilla-d4198223bc1fd06e9b9fe969edb5d03811889def.zip
invoke channel discovery by hash instead of address and add thread listeners only if we also send them the post
Diffstat (limited to 'Zotlabs/Module/Item.php')
-rw-r--r--Zotlabs/Module/Item.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php
index 83424a50d..3d83bcf8f 100644
--- a/Zotlabs/Module/Item.php
+++ b/Zotlabs/Module/Item.php
@@ -132,13 +132,14 @@ class Item extends Controller {
$i = Activity::encode_item_collection($items, 'conversation/' . $item_id, 'OrderedCollection');
- if($portable_id) {
- ThreadListener::store(z_root() . '/item/' . $item_id,$portable_id);
- }
if(! $i)
http_status_exit(404, 'Not found');
+ if($portable_id) {
+ ThreadListener::store(z_root() . '/item/' . $item_id,$portable_id);
+ }
+
$x = array_merge(['@context' => [
ACTIVITYSTREAMS_JSONLD_REV,
'https://w3id.org/security/v1',
@@ -237,6 +238,10 @@ class Item extends Controller {
if(! $i)
http_status_exit(404, 'Not found');
+ if($portable_id) {
+ ThreadListener::store(z_root() . '/item/' . $item_id, $portable_id);
+ }
+
$x = array_merge(['@context' => [
ACTIVITYSTREAMS_JSONLD_REV,
'https://w3id.org/security/v1',