aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Item.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2025-02-11 19:14:11 +0100
committerMario Vavti <mario@mariovavti.com>2025-02-11 19:14:11 +0100
commitfc52d1b44f3e67a8c382547037339cab86b5dba8 (patch)
tree6b0bb10bb6a4f3044041de1f2728276743487cd6 /Zotlabs/Module/Item.php
parentbfce562a46947961b0c5c8d54dbf63339f7cc370 (diff)
downloadvolse-hubzilla-fc52d1b44f3e67a8c382547037339cab86b5dba8.tar.gz
volse-hubzilla-fc52d1b44f3e67a8c382547037339cab86b5dba8.tar.bz2
volse-hubzilla-fc52d1b44f3e67a8c382547037339cab86b5dba8.zip
exclude uplinked items from those queries since they are unlikely to be the originals (sourced items from a channel at the same hub)
Diffstat (limited to 'Zotlabs/Module/Item.php')
-rw-r--r--Zotlabs/Module/Item.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php
index f542e44ff..443f22ad1 100644
--- a/Zotlabs/Module/Item.php
+++ b/Zotlabs/Module/Item.php
@@ -1503,7 +1503,7 @@ class Item extends Controller {
dbesc(ACTIVITY_UNFOLLOW)
);
- $item_normal = " and item.item_hidden = 0 and item.item_type = 0 and item.item_unpublished = 0 and item.item_delayed = 0 and item.item_blocked = 0 $item_normal_extra ";
+ $item_normal = " and item.item_hidden = 0 and item.item_type = 0 and item.item_unpublished = 0 and item.item_delayed = 0 and item.item_blocked = 0 and item.item_uplink = 0 $item_normal_extra ";
$i = null;
@@ -1619,7 +1619,7 @@ class Item extends Controller {
dbesc(ACTIVITY_UNFOLLOW)
);
- $item_normal = " and item.item_hidden = 0 and item.item_type = 0 and item.item_unpublished = 0 and item.item_delayed = 0 and item.item_blocked = 0 $item_normal_extra ";
+ $item_normal = " and item.item_hidden = 0 and item.item_type = 0 and item.item_unpublished = 0 and item.item_delayed = 0 and item.item_blocked = 0 and item.item_uplink = 0 $item_normal_extra ";
$i = null;