mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Issue 6167: Don't distribute uploaded pictures
This commit is contained in:
parent
3b7be251d5
commit
80c2c5479a
1 changed files with 5 additions and 0 deletions
|
@ -99,6 +99,11 @@ class Notifier
|
|||
return;
|
||||
}
|
||||
|
||||
// Issue 6167: We don't distribute image uploads
|
||||
if ($target_item['post-type'] == Item::PT_IMAGE) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!empty($target_item['contact-uid'])) {
|
||||
$uid = $target_item['contact-uid'];
|
||||
} elseif (!empty($target_item['uid'])) {
|
||||
|
|
Loading…
Reference in a new issue