Author: zothar
Date: 2006-05-21 15:06:58 +0000 (Sun, 21 May 2006)
New Revision: 8819
Modified:
trunk/freenet/src/freenet/node/UserAlertManager.java
Log:
Fixed sinister UserAlertManager bug that's been there since the UAM was
introduced in r8371.
Modified: trunk/freenet/src/freenet/node/UserAlertManager.java
===================================================================
--- trunk/freenet/src/freenet/node/UserAlertManager.java 2006-05-21
13:42:57 UTC (rev 8818)
+++ trunk/freenet/src/freenet/node/UserAlertManager.java 2006-05-21
15:06:58 UTC (rev 8819)
@@ -48,7 +48,7 @@
UserAlert[] a = getAlerts();
for(int i=0;i<a.length;i++) {
UserAlert alert = a[i];
- if(!alert.isValid()) return;
+ if(!alert.isValid()) continue;
short level = a[i].getPriorityClass();
if(level <= UserAlert.CRITICAL_ERROR)