mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Show all Forum Invitations, not only the first
This commit is contained in:
@@ -82,7 +82,7 @@ public class AvailableForumsActivity extends BriarActivity
|
||||
try {
|
||||
Collection<ForumContacts> available = new ArrayList<>();
|
||||
long now = System.currentTimeMillis();
|
||||
for (Forum f : forumSharingManager.getAvailable()) {
|
||||
for (Forum f : forumSharingManager.getInvited()) {
|
||||
try {
|
||||
Collection<Contact> c =
|
||||
forumSharingManager.getSharedBy(f.getId());
|
||||
|
||||
@@ -188,7 +188,7 @@ public class ForumListFragment extends BaseEventFragment implements
|
||||
try {
|
||||
long now = System.currentTimeMillis();
|
||||
int available =
|
||||
forumSharingManager.getAvailable().size();
|
||||
forumSharingManager.getInvited().size();
|
||||
long duration = System.currentTimeMillis() - now;
|
||||
if (LOG.isLoggable(INFO))
|
||||
LOG.info("Loading available took " + duration + " ms");
|
||||
|
||||
Reference in New Issue
Block a user