mirror of
https://github.com/friendica/friendica
synced 2025-04-19 07:50:12 +00:00
Don't show failed contacts
This commit is contained in:
parent
17b9c3542d
commit
00974324fe
7 changed files with 9 additions and 4 deletions
|
@ -319,7 +319,7 @@ class Group extends BaseModule
|
|||
$contacts = Model\Contact\Group::listUngrouped(local_user());
|
||||
} else {
|
||||
$contacts_stmt = DBA::select('contact', [],
|
||||
['uid' => local_user(), 'pending' => false, 'blocked' => false, 'self' => false],
|
||||
['uid' => local_user(), 'pending' => false, 'blocked' => false, 'failed' => false, 'self' => false],
|
||||
['order' => ['name']]
|
||||
);
|
||||
$contacts = DBA::toArray($contacts_stmt);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue