Console: Reduce max age of displayed profiles

to match age reductions in the organizer and limit output
This commit is contained in:
zzz
2023-02-12 15:07:37 -05:00
parent 69b73d4bc8
commit 18f598bc2c

View File

@@ -44,7 +44,7 @@ class ProfileOrganizerRenderer {
Set<Hash> peers = _organizer.selectAllPeers();
long now = _context.clock().now();
long hideBefore = now - 90*60*1000;
long hideBefore = now - 45*60*1000;
Set<PeerProfile> order = new TreeSet<PeerProfile>(mode == 2 ? new HashComparator() : new ProfileComparator());
int older = 0;