mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-30 16:29:30 +01:00
fix: Own user in people list
This commit is contained in:
parent
be6d7c5103
commit
ce047b7143
@ -56,10 +56,6 @@ class _ContactsState extends State<ContactsList> {
|
|||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.contains(widget.searchController.text.toLowerCase()))
|
.contains(widget.searchController.text.toLowerCase()))
|
||||||
.toList();
|
.toList();
|
||||||
if (client.presences[client.userID]?.presence?.statusMsg?.isNotEmpty ??
|
|
||||||
false) {
|
|
||||||
contactList.insert(0, client.presences[client.userID]);
|
|
||||||
}
|
|
||||||
return ListView.builder(
|
return ListView.builder(
|
||||||
itemCount: contactList.length,
|
itemCount: contactList.length,
|
||||||
itemBuilder: (_, i) => _ContactListTile(contact: contactList[i]),
|
itemBuilder: (_, i) => _ContactListTile(contact: contactList[i]),
|
||||||
|
Loading…
Reference in New Issue
Block a user