I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 5ef9d46d authored by zzz's avatar zzz
Browse files

dont sort in debug mode

parent 5389ee05
No related branches found
No related tags found
No related merge requests found
......@@ -823,7 +823,8 @@ public class I2PSnarkServlet extends Default {
if(showPeers && isRunning && curPeers > 0) {
List<Peer> peers = snark.coordinator.peerList();
Collections.sort(peers, new PeerComparator());
if (!showDebug)
Collections.sort(peers, new PeerComparator());
for (Peer peer : peers) {
if (!peer.isConnected())
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment