aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Sse_bs.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-04-15 15:39:33 +0000
committerMario <mario@mariovavti.com>2020-04-15 15:39:33 +0000
commite588ea8a8b697605c40a13210ab2b4c485d45ade (patch)
tree114beb2e7edea773afc724b22c79f40f798780eb /Zotlabs/Module/Sse_bs.php
parent91cad21d332154eba17b21d3a2dd6a64d55d0a28 (diff)
downloadvolse-hubzilla-e588ea8a8b697605c40a13210ab2b4c485d45ade.tar.gz
volse-hubzilla-e588ea8a8b697605c40a13210ab2b4c485d45ade.tar.bz2
volse-hubzilla-e588ea8a8b697605c40a13210ab2b4c485d45ade.zip
fix notification filtering
Diffstat (limited to 'Zotlabs/Module/Sse_bs.php')
-rw-r--r--Zotlabs/Module/Sse_bs.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Sse_bs.php b/Zotlabs/Module/Sse_bs.php
index 89e852120..c139fd19b 100644
--- a/Zotlabs/Module/Sse_bs.php
+++ b/Zotlabs/Module/Sse_bs.php
@@ -119,7 +119,7 @@ class Sse_bs extends Controller {
$sql_extra2 = '';
if(self::$xchans)
- $sql_extra2 = " AND (author_xchan IN (" . self::$xchans . ") OR owner_xchan IN (" . self::$xchans . ")) ";
+ $sql_extra2 = " AND author_xchan IN (" . self::$xchans . ") ";
$item_normal = item_normal();
@@ -183,7 +183,7 @@ class Sse_bs extends Controller {
$sql_extra2 = '';
if(self::$xchans)
- $sql_extra2 = " AND (author_xchan IN (" . self::$xchans . ") OR owner_xchan IN (" . self::$xchans . ")) ";
+ $sql_extra2 = " AND author_xchan IN (" . self::$xchans . ") ";
$item_normal = item_normal();
@@ -259,7 +259,7 @@ class Sse_bs extends Controller {
$sql_extra2 = '';
if(self::$xchans)
- $sql_extra2 = " AND (author_xchan IN (" . self::$xchans . ") OR owner_xchan IN (" . self::$xchans . ")) ";
+ $sql_extra2 = " AND author_xchan IN (" . self::$xchans . ") ";
$item_normal = item_normal();