show only contacts in contacts tab

This commit is contained in:
kosyak 2024-08-05 22:38:51 +02:00
parent cf9d0c4f09
commit 42d59adc78

View file

@ -1150,13 +1150,6 @@ public class StartConversationActivity extends XmppActivity implements XmppConne
if (self.match(this, needle)) { if (self.match(this, needle)) {
this.contacts.add(self); this.contacts.add(self);
} }
for (Bookmark bookmark : account.getBookmarks()) {
if (bookmark.match(this, needle)) {
this.contacts.add(bookmark);
tags.addAll(bookmark.getTags(this));
}
}
} }
} }