fix: Own user in people list

This commit is contained in:
Christian Pauly 2021-03-27 19:32:05 +01:00
parent be6d7c5103
commit ce047b7143
1 changed files with 0 additions and 4 deletions

View File

@ -56,10 +56,6 @@ class _ContactsState extends State<ContactsList> {
.toLowerCase()
.contains(widget.searchController.text.toLowerCase()))
.toList();
if (client.presences[client.userID]?.presence?.statusMsg?.isNotEmpty ??
false) {
contactList.insert(0, client.presences[client.userID]);
}
return ListView.builder(
itemCount: contactList.length,
itemBuilder: (_, i) => _ContactListTile(contact: contactList[i]),