Add a new activity that shows sharing status of forum

The new activity shows who you are sharing a forum with and who shares a
forum with you. It is accessible from the overflow menu when in a forum.

Closes #398
This commit is contained in:
Torsten Grote
2016-05-13 15:36:49 -03:00
parent 8c2fd905a1
commit b13bf66165
17 changed files with 334 additions and 17 deletions

View File

@@ -30,7 +30,7 @@ public class ContactListItem {
}
void setMessages(Collection<ConversationItem> messages) {
empty = messages.isEmpty();
empty = messages == null || messages.isEmpty();
timestamp = 0;
unread = 0;
if (!empty) {