Don't distribute for ignored contacts

This commit is contained in:
Michael 2018-04-25 16:00:21 +00:00
parent 8d8aef5624
commit 66547e5107
1 changed files with 1 additions and 1 deletions

View File

@ -863,7 +863,7 @@ class Item extends BaseObject
unset($item['id']);
$condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND `rel` IN (?, ?)",
$condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND NOT `readonly` AND `rel` IN (?, ?)",
$parent['owner-id'], CONTACT_IS_SHARING, CONTACT_IS_FRIEND];
$contacts = dba::select('contact', ['uid'], $condition);
while ($contact = dba::fetch($contacts)) {