Compare commits

..

No commits in common. "master" and "2.3.1" have entirely different histories.

3 changed files with 0 additions and 12 deletions

BIN
screenshots.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

BIN
screenshots.xcf Normal file

Binary file not shown.

View file

@ -1150,12 +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)) {
tags.addAll(bookmark.getTags(this));
}
}
} }
} }
@ -1770,12 +1764,6 @@ public class StartConversationActivity extends XmppActivity implements XmppConne
ListItem item = getItem(i); ListItem item = getItem(i);
List<ListItem.Tag> itemTags = item.getTags(activity); List<ListItem.Tag> itemTags = item.getTags(activity);
if (item instanceof Contact && !((Contact) item).getAccount().getJid().equals(account.getJid())) {
continue;
} else if (item instanceof Bookmark && !((Bookmark) item).getAccount().getJid().equals(account.getJid())) {
continue;
}
if (itemTags.size() == 0 || (itemTags.size() == 1 && UIHelper.isStatusTag(activity, itemTags.get(0)))) { if (itemTags.size() == 0 || (itemTags.size() == 1 && UIHelper.isStatusTag(activity, itemTags.get(0)))) {
if (!generalTagAdded) { if (!generalTagAdded) {
tagsAndAccounts.add(initialPosition, generalTag); tagsAndAccounts.add(initialPosition, generalTag);