Author: nextgens
Date: 2007-02-24 21:19:48 +0000 (Sat, 24 Feb 2007)
New Revision: 11909

Modified:
   trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
Log:
Doh: we should display it even if there is no ARKFetcher ;)

Modified: trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java       
2007-02-24 21:11:05 UTC (rev 11908)
+++ trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java       
2007-02-24 21:19:48 UTC (rev 11909)
@@ -224,10 +224,9 @@
                                        activityList.addChild("li", 
"Transferring\u00a0Requests:\u00a0" + numTransferringRequests);
                                }
                                if (advancedModeEnabled) {
-                                       if (numARKFetchers > 0) {
+                                       if (numARKFetchers > 0)
                                                activityList.addChild("li", 
"ARK\u00a0Fetch\u00a0Requests:\u00a0" + numARKFetchers);
-                                               activityList.addChild("li", 
"FetcherByUSKSize:\u00a0" + node.clientCore.uskManager.getFetcherByUSKSize());
-                                       }
+                                       activityList.addChild("li", 
"FetcherByUSKSize:\u00a0" + node.clientCore.uskManager.getFetcherByUSKSize());
                                }
                        }



Reply via email to