1
0
Fork 0

Fix: Fetching of non public photos

This commit is contained in:
Michael 2021-07-01 18:05:54 +00:00
commit 8e9433f2e9
3 changed files with 10 additions and 3 deletions

View file

@ -116,16 +116,17 @@ class Session
$session = DI::session();
$session->set('remote', []);
$remote = [];
$remote_contacts = DBA::select('contact', ['id', 'uid'], ['nurl' => Strings::normaliseLink($session->get('my_url')), 'rel' => [Contact::FOLLOWER, Contact::FRIEND], 'self' => false]);
while ($contact = DBA::fetch($remote_contacts)) {
if (($contact['uid'] == 0) || Contact\User::isBlocked($contact['id'], $contact['uid'])) {
continue;
}
$session->set('remote', [$contact['uid'] => $contact['id']]);
$remote[$contact['uid']] = $contact['id'];
}
DBA::close($remote_contacts);
$session->set('remote', $remote);
}
/**